/* - Google Fonts Import- */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/*-Global Styles-*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Figtree', Arial, Helvetica, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

a {
    color: #0077cc;
    text-decoration: none;
    transition: all 0.3s;
}
a:hover {
    text-decoration: underline;
    transform: translateY(-3px);
}


/* Smooth hover effect for titles */
h1, h2, h3 {
    transition: all 0.3s ease-in-out;
}
h1:hover, h2:hover {
    transform: translateY(-3px);
    text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.8);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex: 1;
}


#header-container.container {
display: flex;
justify-content: space-between;
align-items: center;
}


/* -- Header---*/
header {
    background: #222;
    color: #fff;
    padding: clamp(0.75rem, 1vw, 1.5rem) 0;
}
header .site-title {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: bold;
}

#zen-intro:empty {
background: none !important;
padding: 0;
margin: 0;
min-height: 0;
}


header#site-header.site-header[role="banner"] {
    background: #111;
    color: #fff;
    padding: 1rem 2rem;
}

#header-container.container {
display: flex;
justify-content: space-between;
align-items: center;
}


.nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
    margin-top: 0.5rem;
}
.nav li a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}
.nav li a:hover {
    color: #ffcc00;
    transform: translateY(4px);
}

/* Logo */
.logo {
    width: clamp(100px, 20%, 300px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.logo:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

#logo.site-logo {
font-size: 1.5rem;
font-weight: bold;
}

/* ------------------------------
 *   Hero & Feature Sections
 * --------------------------------*/
.hero-block {
    padding: clamp(2rem, 3vw, 3rem) clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    border-radius: 8px;
    margin: clamp(1rem, 2vw, 2rem) 0;
}
.hero-block h2,
.hero-block p {
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.feature-block {
    padding: clamp(1rem, 1.5vw, 1.5rem);
    border-left: 4px solid #0077cc;
    border-radius: 6px;
    margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

/* ------------------------------
 *   Content & Sidebar
 * --------------------------------*/
.content-container {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: clamp(0.5rem, 1vw, 1rem);
    width: 220px;
    max-height: calc(100vh - 2rem);
    background-color: #f1f1f1;
    padding: clamp(0.5rem, 1vw, 1rem);
    border-radius: 6px;
    flex-shrink: 0;
}
.sidebar a {
    display: block;
    color: var(--link-color, #000);
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(0.75rem, 1vw, 1rem);
    font-weight: 500;
    border-radius: 4px;
    box-shadow: 0 9px #999;
    transition: all 0.3s;
}
.sidebar a.active {
    background-color: #04AA6D;
    color: white;
    font-weight: 600;
    transform: translateY(4px);
}
.sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
    transform: translateY(4px);
}

/* Main Content */
.content {
    flex: 1;
    background: #fff;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive Sidebar Collapse */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    .sidebar {
        position: relative;
        width: 100%;
        max-height: none;
        margin-bottom: clamp(0.5rem, 1vw, 1rem);
    }
    .sidebar a {
        display: inline-block;
    }
}
@media (max-width: 400px) {
    .sidebar a {
        width: 100%;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(2rem); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-2rem); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive layout */
@media screen and (max-width: 600px) {
    .event-container {
        padding: 1rem;
        gap: 1.5rem;
    }
    .event-content {
        padding: 0.5rem;
    }
}

/* - Buttons -*/
#myBtnContainer {
text-align: center;
margin-bottom: clamp(1rem, 2vw, 20px);
}
.btn {
    border: none;
    outline: none;
    padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1rem, 2vw, 1.25rem);
    cursor: pointer;
    color: white;
    background-color: #04AA6D;
    font-size: clamp(0.875rem, 1vw, 1rem);
    border-radius: 4px;
    margin: 5px;
    transition: background 0.3s;
}
.btn:hover {
    background-color: #555;
}
.btn.active {
    background-color: #333;
}

/* ------------------------------
 *   Portfolio Grid
 * --------------------------------*/
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1rem);
}
.column {
    flex: 1 0 clamp(200px, 30%, 300px);
    margin: clamp(0.5rem, 1vw, 10px);
}
.column .content {
    background: white;
    padding: clamp(0.5rem, 1vw, 1rem);
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Gallery Grid */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    padding: 16px;
}

.portfolio-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* ------------------------------
 *   CTA Block
 * --------------------------------*/
.cta-block {
    color: #fff;
    text-align: center;
    padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 8px;
    margin-bottom: clamp(1rem, 2vw, 2rem);
    background: #333;
}
.cta-block h3 {
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}
.cta-block a {
    display: inline-block;
    background: #ffcc00;
    color: #222;
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}
.cta-block a:hover {
    background: #e6b800;
}

/* ------------------------------
 *   Extra Blocks (extra1–extra6)
 * --------------------------------*/
.extra-block {
    background: #fff;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 6px;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ------------------------------
 *   Footer
 * --------------------------------*/
footer {
    background: #222;
    color: #ccc;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    text-align: center;
    margin-top: auto;
}
.footer-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    margin-top: clamp(0.5rem, 1vw, 1rem);
}
.footer-nav li a {
    color: #ccc;
    transition: color 0.3s;
}
.footer-nav li a:hover {
    color: #fff;
}


