/* ============================================
   LUXURY COMING SOON PAGE - PIXEL PERFECT
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent all scrolling - static non-scrollable page */
html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent iOS overscroll / rubber-band effect */
    position: fixed;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

body {
    font-family: 'Playfair Display', serif;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
    color: #fff;
    background-color: #000;
    /* Prevent iOS overscroll / rubber-band effect */
    position: fixed;
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overscroll-behavior: none;
}

/* ============================================
   BACKGROUND: Fullscreen image with 30% black overlay and grain texture
   ============================================ */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("assets/bg.jpg") center / cover no-repeat;
    z-index: -2;
}

/* Grain / Noise texture overlay - subtle and non-intrusive */
/* body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url("assets/noise.png");
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
} */

/* ============================================
   NAVBAR: Desktop version - 2x height, black 50% opacity
   ============================================ */
.navbar {
    position: relative;
    height: 120px; /* 2x default navbar height (60px * 2) */
    max-height: 120px;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    flex-shrink: 0; /* Prevent navbar from shrinking */
}

/* Logo: Scaled 2.5x larger than default */
.logo {
    height: 120px; /* 2.5x typical logo size */
    width: auto;
    display: block;
}

/* Navigation links: Cinzel font, wide letter spacing, elegant hover */
.nav-center {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nav-center a {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-center a:hover {
    color: #fff;
}

/* Right side: Icons and text with smooth hover transitions */
.nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-icon {
    height: 22px;
    width: auto;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.nav-icon:hover {
    opacity: 1;
}

.nav-currency,
.nav-language {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.nav-currency:hover,
.nav-language:hover {
    opacity: 1;
}

/* ============================================
   BURGER MENU: Hidden on desktop/tablet, visible on mobile only
   ============================================ */
.burger-menu {
    display: none; /* Hidden by default, shown on mobile only */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    outline: none;
}

.burger-line {
    width: 22px;
    height: 1.5px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

/* ============================================
   MOBILE MENU OVERLAY: Full-screen navigation
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden; /* Prevent overlay from creating scroll */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu a:hover {
    color: #fff;
}

/* ============================================
   HERO SECTION: Perfectly centered text
   ============================================ */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    flex-shrink: 0; /* Prevent hero from shrinking */
    overflow: hidden; /* Prevent content overflow */
}

/* Hero overlay: Subtle dark overlay ONLY in hero section, behind text */
.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* 50% opacity - subtle and premium */
    pointer-events: none;
    z-index: 0;
    overflow: hidden; /* Prevent overlay from extending outside viewport */
}

.hero h1 {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    z-index: 1; /* Text above overlay */
}

/* Hero subtext: Mobile only, Playfair Display */
.hero-subtext {
    display: none; /* Hidden on desktop */
}

.hero-subtext-line1,
.hero-subtext-line2 {
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-subtext-line1 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-subtext-line2 {
    font-size: 13px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* LAPTOP: 1200px */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 40px;
    }

    .nav-center {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(42px, 7vw, 80px);
        letter-spacing: 10px;
    }

    /* Hero overlay: Scale responsively */
    .hero::before {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
    }
}

/* TABLET: 768px */
@media (max-width: 768px) {
    .navbar {
        padding: 0 30px;
        height: 100px;
    }

    .logo {
        height: 80px;
    }

    .nav-center {
        gap: 30px;
    }

    .nav-center a {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero {
        height: calc(100vh - 100px);
        padding: 0 30px;
    }

    .hero h1 {
        font-size: clamp(36px, 6vw, 64px);
        letter-spacing: 8px;
    }

    /* Hero overlay: Scale responsively */
    .hero::before {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
    }
}

/* BURGER MENU BREAKPOINT: Visible below 645px */
@media (max-width: 644px) {
    /* Burger menu: Visible when screen width is below 645px */
    .burger-menu {
        display: flex;
    }

    /* Hide navigation links when burger menu is visible */
    .nav-center {
        display: none;
    }
}

/* MOBILE: ≤480px - Completely different layout */
@media (max-width: 480px) {
    /* Navbar: Reduced height, logo left, icons right only */
    .navbar {
        height: 70px; /* Reduced navbar height */
        max-height: 70px;
        padding: 0 20px;
        background: rgba(0, 0, 0, 0.6);
    }

    .logo {
        height: 80px; /* Smaller logo for mobile */
        max-height: 80px;
    }

    /* Hide navigation links and currency/language text on mobile */
    .nav-center,
    .nav-currency,
    .nav-language {
        display: none;
    }

    /* Mobile navbar: Only icons on the right, burger menu after cart */
    .nav-right {
        gap: 20px;
        align-items: center;
    }

    .nav-icon {
        height: 20px;
        opacity: 0.85;
    }

    .burger-line {
        width: 20px;
        height: 1.5px;
    }

    /* Burger menu active state (animated X icon) */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero: Centered with mobile-only subtext */
    .hero {
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        max-width: 100vw;
        padding: 0 20px;
        gap: 32px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: 4px;
        font-weight: 400;
        max-width: 100%;
        word-wrap: break-word;
    }

    /* Hero overlay: Scale responsively on mobile */
    .hero::before {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
    }
}

/* ============================================
   OPTIONAL: Gentle fade-in on page load
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero {
    animation: fadeIn 0.8s ease-in-out;
}
