/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
   
    overflow-x: hidden;
}

:root {
    --glass-blur: 6px;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

body.menu-open {
    overflow: hidden; /* Prevent scrolling when menu is open */
}

/* UTILITIES */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* HERO SECTION MAIN CONTAINER */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background-color: #cba8a8;
}

/* BACKGROUND IMAGE & OVERLAY */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    opacity: 0.9;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 55%, rgba(0, 0, 0, 0.24) 100%);
    mix-blend-mode: multiply;
}

/* NAVBAR */
.hero-nav {
    position: absolute;
    top: 1.5rem; /* 24px */
    left: 1rem;
    right: 1rem;
    z-index: 60;
}

.nav-container {
    width: 100%;
    height: 4rem; /* 64px */
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem; /* Reduced padding on mobile */
    box-shadow: var(--glass-shadow);
    position: relative;
    z-index: 60;
}

/* Menu Button (Mobile) */
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: -0.5rem;
}

.menu-btn svg {
    width: 24px;
    height: 24px;
}

.logo {
    font-family: "Playfair Display", serif;
  /*   background: linear-gradient(90deg,#fd67c3,#f38cef );
    -webkit-background-clip: text;
    background-clip: text; */
    color: #fd67c3;
    font-weight: 600;
    font-size: 37px;
    letter-spacing: 2.5px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.logo a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo span {
    font-family: 'Montserrat' !important;
    font-size: 10px !important;
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    color: #333333 ;
    margin-top: 2px;
    margin-left: 2px;
    text-transform: uppercase !important;
}

/* Desktop Navigation Links */
.nav-links {
    display: none; /* Hidden on mobile */
    gap: 2rem;
    text-transform: uppercase;
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
    letter-spacing: 0.1em;
    color: white;
}



/* User Icon Button */
.user-btn {
    width: 2.5rem; /* 40px */
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.user-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    background: rgb(0 0 0 / 60%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    transform: translateX(100%); /* Hidden by default */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    color: white;
}

.mobile-menu-overlay.active {
    
    transform: translateX(0);
}

.menu-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.5rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.menu-header .logo {
    color: #fd67c3;
    font-size: 26px;
}

.menu-header .logo span {
    font-size: 10px !important;
    margin-top: 2px;
    color: #f9fafb;
}

.close-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Menu Links Style */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-item {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* 32px */
    line-height: 1;
    color: white;
    transition: color 0.3s;
    letter-spacing: -0.02em;
}

.menu-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.menu-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 2.5rem;
}

/* Contact Info Styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: auto;
    font-family: 'Inter', sans-serif;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
}

.contact-label {
    font-size: 0.625rem; /* 10px */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text {
    font-size: 0.875rem; /* 14px */
    line-height: 1.6;
    color: white;
    font-weight: 300;
}

.contact-text a {
    display: block;
}

.contact-text a:hover {
    text-decoration: underline;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
    color: rgba(255, 255, 255, 0.5);
}

/* SOCIAL LINKS SECTION */
.social-section {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ========================================
   HERO CONTENT CENTER - LUX GLASS CARD
   ======================================== */

.hero-content-center {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    z-index: 30;
    width: min(86%, 620px);
    display: flex;
    justify-content: flex-start;
    padding: 0 1rem;
}

.hero-content-center::before,
.hero-content-center::after {
    content: "";
    position: absolute;
    inset: -120px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.38;
    z-index: -1;
}


.hero-content-center::after {
    background: radial-gradient(circle at 70% 55%, rgba(255, 240, 230, 0.32), transparent 65%);
}

.hero-content-card {
    width: 100%;
    max-width: 540px;
    padding: clamp(1.5rem, 2.8vw, 2.4rem);
    border-radius: 28px;
    background: rgb(122 122 122 / 14%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    text-align: left;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.hero-content-card::before {
    content: "";
    position: absolute;
    inset: 0;
    
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d2d2d;
    background: linear-gradient(120deg, #fff7f2 0%, #ffeef9 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.2rem;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 6.2vw, 3.6rem);
    font-weight: 500;
    line-height: 1.16;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 0.9rem;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.98rem, 2.3vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
    margin: 0 0 2rem 0;
    max-width: 520px;
}

.hero-actions {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.7rem;
    background: linear-gradient(135deg, #cd0a85 0%, #a1086c 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(205, 10, 133, 0.32);
    transition: all 0.35s ease;
}

.hero-book-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 24px 60px rgba(205, 10, 133, 0.45);
}


.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    background: var(--glass-bg);
    transition: all 0.3s ease;
}

.hero-secondary-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

 .hero-highlights {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-start;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

@media (max-width: 767px) {
    :root {
        --glass-blur: 2px;
        --glass-bg: rgba(255, 255, 255, 0.14);
        --glass-border: rgba(255, 255, 255, 0.18);
        --glass-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .nav-container,
    .hero-content-card,
    .hero-secondary-link,
    .hero-highlights span {
        /* Lighter blur on mobile to avoid expensive repaints */
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
       
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hero-content-center {
        top: 52%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 94%;
        padding: 0;
    }

    .hero-content-card {
        padding: 1.35rem;
        border-radius: 22px;
        text-align: center;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.42rem 0.95rem;
        margin-bottom: 1.1rem;
    }

    .hero-main-title {
        margin-bottom: 0.75rem;
    }

    .hero-description {
        margin-bottom: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }

    .hero-book-btn,
    .hero-secondary-link {
        width: 100%;
    }

    .hero-highlights {
        gap: 0.35rem;
        justify-content: center;
    }

    .hero-highlights span {
        font-size: 0.72rem;
        padding: 0.38rem 0.78rem;
    }
}

/* HUGE BOTTOM TEXT */
.big-text-container {
    position: absolute;
    bottom: -2%;
    left: 0;
    right: 0;
    z-index: 20;
    pointer-events: none;
    user-select: none;
    display: flex;
    justify-content: center;
    overflow: hidden;
}


.big-text {
    font-size: 13vw;
    line-height: 0.8;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.025em;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 235, 235, 0.7);
    width: 100%;
    text-align: center;
}


/* Hide big text on small mobile screens */
@media (max-width: 480px) {
    .big-text-container {
        bottom: 0%;
        left: -3px;
    }
    .big-text {
        font-size: 18vw;
    }
}

/* BOTTOM GRADIENT FADE */
.bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem; /* 128px */
    background: linear-gradient(to top, rgba(203, 168, 168, 0.5), transparent);
    z-index: 10;
    pointer-events: none;
}

/* MOBILE MEDIA QUERIES */
@media (max-width: 767px) {
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        text-align: center;
        align-items: center;
    }

    .logo span {
        font-size: 8px !important;
        margin-left: 0;
    }
}

/* MEDIA QUERIES (Desktop Styles) */
@media (min-width: 768px) {
    .hero-nav {
        left: 3rem; /* 48px */
        right: 3rem;
    }

    .nav-container {
        height: 5rem; /* 80px */
        padding: 0 3rem;
    }

    .menu-btn {
        display: none;
    }
    
    /* On Desktop, logo is adjusted slightly */
    .logo {
        font-size: 26px;
        margin: 0;
    }

    .logo span {
        font-size: 10px !important;
        text-transform: uppercase;
    }

    .nav-links {
        display: flex;
    }

    .big-text {
        font-size: 15vw;
    }
    
    /* Adjust menu text size for larger screens if opened (though button is hidden) */
    .menu-item {
        font-size: 3rem;
    }
    
    .menu-content {
        padding: 3rem;
    }
}
