

/* ===== Shared base ===== */
.navbar {
    background: #FAF8F6;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Note: hover/active colors and underline animation are handled by your
   existing .nav-link styles in style.css — these only adjust typography
   for the new boutique-editorial layout. */
.navbar .nav-link {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.navbar .logo-wordmark {
    font-family: 'Lobster Two', cursive;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.5px;
    line-height: 1;
}

.navbar .logo {
    text-decoration: none;
}


/* ============================================
    Stacked & Centered
   ============================================ */
.navbar-stacked {
    padding: 30px 0 0;
}

.nav-wrapper-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.navbar .logo-stacked img {
    height: 130px;
    width: auto;
}

.navbar .logo-stacked .logo-wordmark {
    font-size: 2.1rem;
}

.nav-menu-stacked {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}





/* ============================================
   MOBILE MENU TOGGLE (hamburger) 
   ============================================ */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   RESPONSIVE — both layouts
   ============================================ */
@media (max-width: 900px) {
    /* Show hamburger, hide desktop nav menus */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-stacked,
    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    /* Mobile dropdown menu — applies to all menu types when active */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FAF8F6;
        padding: 24px 20px;
        gap: 22px;
        align-items: center;
        z-index: 100;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    /* OPTION 1 mobile adjustments */
    .navbar-stacked {
        padding: 20px 0;
    }
    .navbar-stacked .nav-wrapper-stacked {
        gap: 0;
    }
    .navbar-stacked .nav-menu-stacked {
        border-top: none;
        padding: 0;
    }
    .navbar-stacked .mobile-menu-toggle {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .navbar-stacked .logo-stacked img {
        height: 100px;
    }
    .navbar-stacked .logo-stacked .logo-wordmark {
        font-size: 1.7rem;
    }


@media (max-width: 600px) {
    .navbar-stacked .logo-stacked img {
        height: 80px;
    }
    .navbar-stacked .logo-stacked .logo-wordmark {
        font-size: 1.4rem;
    }
    .navbar-split .logo-split img {
        height: 60px;
    }
    .navbar-split .logo-split .logo-wordmark {
        font-size: 1rem;
    }
}