/* --- LUXURY & PREMIUM VARIABLES --- */
:root {
    --gold-primary: #d4af37;
    --gold-light: #f9d976;
    --gold-dark: #aa8c2c;
    --black-deep: #050505;
    --black-soft: #111111;
    --white-soft: #f4f4f4;
    --overlay-dark: rgba(0, 0, 0, 0.65);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-deep);
    color: var(--white-soft);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ... */

/* Contact Button */
.btn-contact {
    padding: 1rem 3rem;
    /* Much larger for luxury feel */
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    /* High contrast */
    border: none;
    font-weight: 700;
    /* Bolder */
    font-size: 1rem;
    /* Clearer text */
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    /* Initial glow */
    transition: all 0.4s ease;
    border-radius: 50px;
    white-space: nowrap;
    /* Prevent wrapping */
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    /* Stronger glow on hover */
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    /* Lighter on hover */
}

/* ... */

.cta-primary {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    /* Rounded */
}

/* ... */

.cta-secondary {
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    border-radius: 50px;
    /* Rounded */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover effect for cursor */
body.hovering .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

/* --- HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    /* Use percentage for responsiveness */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2005;
    /* Ensure header stats ON TOP of mobile menu (z=2000) */
    transition: padding 0.5s ease, background 0.8s ease, box-shadow 0.8s ease;
    /* Smoother independent transitions */
    border-bottom: none;
    /* Removed line as per user request */
}

/* Header style when mobile menu is open - transparent to blend with overlay */
.main-header.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.main-header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    /* Darker for better contrast */
    backdrop-filter: blur(15px);
    padding: 0.8rem 5%;
    border-bottom: none;
    /* Seamless luxury feel */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    /* Shadow instead of line */
}

/* ... (Logo styles remain similar but adjusted for fit) ... */
.logo-container .logo {
    height: 90px;
    /* Balanced large size */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: height 0.3s;
}

.main-header.scrolled .logo-container .logo {
    height: 60px;
}

/* ... (Nav remains) ... */

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('image/landing.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker top for header readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin-top: 60px;
    /* Offset for large header */
}

.hero-subtitle {
    /* ... same ... */
    font-family: var(--font-accent);
    color: var(--gold-primary);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-heading);
    /* Responsive font size using clamp */
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 1.1;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.95);
    background: linear-gradient(to right, #ffffff, #dcdcdc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .highlight {
    color: var(--gold-primary);
    -webkit-text-fill-color: var(--gold-primary);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    /* Increased contrast */
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

.cta-primary {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-deep);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Navigation */
.desktop-nav {
    display: block;
    /* Show links on desktop */
}

.desktop-nav ul {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-soft);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    transition: width 0.4s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.btn-contact::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
    /* Higher than mobile-menu (2000) */
}

.mobile-toggle .bar {
    width: 30px;
    height: 3px;
    /* Slightly thicker for visibility */
    background-color: var(--gold-primary);
    transition: 0.3s;
}

.cta-secondary {
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white-soft);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 8px;
    background: var(--gold-primary);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* --- ANIMATIONS --- */
.revealed {
    animation: fadeInUp 0.8s forwards ease-out;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- SECTION: PREVIEW --- */
.preview-section {
    padding: 8rem 2rem;
    background-color: var(--black-soft);
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0 auto 2rem;
}

.preview-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- MENU OVERLAY (Shared Desktop & Mobile) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
    z-index: 2000;
    /* Higher than toggle */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    /* Removed clip-path for cleaner, more joined feel */
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin: 1.2rem 0;
    /* More breathing room */
    overflow: hidden;
    position: relative;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Even smaller as requested */
    font-weight: 300;
    /* Lighter weight */
    color: rgba(255, 255, 255, 0.5);
    /* Subtle initial color */
    display: block;
    transform: translateY(100%);
    transition: all 0.5s ease;
    padding: 0 1rem;
    letter-spacing: 5px;
    /* Widened spacing for small text luxury */
    text-transform: uppercase;
}

.mobile-menu.active a {
    transform: translateY(0);
    color: var(--white-soft);
}

.mobile-menu a:hover {
    color: var(--gold-primary);
    transform: scale(1.05);
    /* Subtle zoom */
    letter-spacing: 6px;
    /* Expand on hover */
}

/* Add decorative lines */
.mobile-menu li::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    /* Faded edges */
    margin: 10px auto 0;
    transition: width 0.6s ease;
    opacity: 0.5;
}

.mobile-menu li:hover::after {
    width: 100px;
    /* Wider but elegant line */
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
    .main-header {
        padding: 1.5rem 2rem;
    }

    .logo-container .logo {
        height: 70px;
    }

    /* Mobile logo size */
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        /* Show 3-line menu on mobile */
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    /* No custom cursor on touch */
    * {
        cursor: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    /* Mobile Menu styles are now global */
}