/*-------------- 1. Navbar --------------------------------*/


/* --- MOBILE HAMBURGER ICON --- */
.hamburger {
    display: none;
    /* Hidden on Desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    /* Above the overlay */
}

.hamburger .bar {
    width: 30px;
    height: 2px;
    background: #121212;
    transition: 0.4s;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 100%;
    height: 100vh;
    background: #FFFDF9;
    /* Cream Background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    /* Elegant slide */
    z-index: 1000;
}

/* Mobile Links Typography */
.mobile-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-links li {
    margin: 25px 0;
}

.mobile-links a {
    font-family: 'Poppins', serif;
    font-size: 2rem;
    /* Big Editorial Text */
    color: #121212;
    text-decoration: none;
}

.btn-mobile {
    margin-top: 30px;
    padding: 15px 40px;
}

/* --- ACTIVE STATE (When Menu is Open) --- */
.mobile-menu-overlay.active {
    right: 0;
    /* Slide in */
}

/* Hamburger turns into X */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- RESPONSIVE MEDIA QUERY --- */
@media (max-width: 968px) {
    .desktop-only {
        display: none;
    }

    /* Hide normal links */
    .hamburger {
        display: flex;
    }

    /* Show icon */
}


/*-------------- 2. Hero Section --------------------------*/



/*-------------- 3. Pricing / Membership ------------------*/



/*-------------- 4. Services ------------------------------*/



/*-------------- 5. Reviews -------------------------------*/



/*-------------- 6. Why Choose Us -------------------------*/



/*-------------- 7. Gallery -------------------------------*/



/*-------------- 8. Meet The Doctor -----------------------*/



/*-------------- 9. FAQ -----------------------------------*/



/*-------------- 10. Contact ------------------------------*/



/*-------------- 11. Footer -------------------------------*/