/* =========================
   NAVBAR BASE
   ========================= */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 999;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
   ========================= */
.logo {
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}

.logo-main {
    color: var(--pink-primary);
}

.logo-accent {
    color: var(--pink-dark);
    font-weight: 400;
    margin-left: 2px;
}

/* =========================
   MENU (DESKTOP)
   ========================= */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    color: var(--color-black);
    text-decoration: none;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: var(--pink-primary);
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================
   CTA
   ========================= */
.nav-cta {
    margin-left: 10px;
}

/* =========================
   HAMBURGER
   ========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--pink-primary);
    transition: 0.35s ease;
}

/* =========================
   MOBILE MENU 
   ========================= */
@media (max-width: 992px) {

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -80vw;
        /* hidden */
        width: 80vw;
        max-width: 360px;
        /* optional safety */
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 1001;
        transition: right 0.35s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-cta {
        margin-top: 24px;
    }
}


/* =========================
   HAMBURGER → CROSS
   ========================= */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   ANIMATION
   ========================= */
@keyframes menuFade {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}