/* ============================================
   HEADER – LARGER LOGO, SAME HEADER HEIGHT
============================================ */

.site-header {
    background: #1e1029;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid #3b2a4a;
    height: 80px;                       /* unchanged */
}

.site-header .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 40px);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-sizing: border-box;
}

/* ----- Logo – NOW LARGER ----- */
.logo {
    flex-shrink: 0;
    line-height: 0;
}

.logo a {
    display: inline-block;
}

.logo-img {
    max-height: 100px;                   /* was 65px – nearly full header height */
    width: auto;
    display: block;
    transition: max-height 0.2s ease;
}

/* ----- Desktop navigation (unchanged) ----- */
.nav ul {
    list-style: none;
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: #e2d6f0;
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
    transition: 0.3s ease;
    position: relative;
    padding-bottom: 6px;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: #4ade80;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #4ade80;
    transition: 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* ----- Hamburger button (unchanged) ----- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
    padding: 0;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #e2d6f0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #e2d6f0;
    transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.hamburger::before {
    top: -8px;
    left: 0;
}

.hamburger::after {
    bottom: -8px;
    left: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
    bottom: 0;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .logo-img {
        max-height: 90px;               /* slightly smaller but still large */
    }
}

/* Mobile – hamburger activated */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: min(280px, 75vw);
        height: calc(100vh - 80px);
        background: #1e1029;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        border-right: 1px solid #3b2a4a;
        box-shadow: 2px 0 20px rgba(0,0,0,0.3);
        padding-top: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav li {
        width: 100%;
        border-bottom: 1px solid #2a1a38;
    }

    .nav a {
        display: block;
        padding: 14px 20px;
        font-size: 1rem;
        white-space: normal;
    }

    .nav a::after {
        display: none;
    }

    .nav a:hover,
    .nav a.active {
        background: #2a1a38;
        color: #4ade80;
    }

    .nav.open {
        left: 0;
    }
}

/* Small phones – keep logo proportionally large */
@media (max-width: 480px) {
    .logo-img {
        max-height: 80px;
    }
}

@media (max-width: 360px) {
    .logo-img {
        max-height: 70px;
    }
}