:root {
    --primary: #D4B499;
    --dark: #0A0A0A;
    --white: #ffffff;
    --font-fancy: 'Cormorant+Garamond', serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark); color: var(--white); font-family: var(--font-body); overflow-x: hidden; }

/* Navbar */
.navbar {
    position: fixed; top: 25px; left: 50%; transform: translateX(-50%);
    width: 90%; z-index: 1000; padding: 1px 20px;
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px);
    border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.navbar:hover{
    border: 2px solid rgb(255, 247, 241);
}


.nav-link {
    text-decoration: none;
    color: #ffffff; /* Pure White */
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem; /* Chota aur elegant size */
    font-weight: 300; /* Patla font (Light weight) */
    text-transform: uppercase;
    letter-spacing: 3px; /* Words ke beech mein premium space */
    opacity: 0.6; /* Thora sa dim taake logo zyada chamke */
    position: relative; /* Animation ke liye zaroori hai */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px 0;
}

/* --- Hover Animation: Color Change + Underline Reveal --- */
.nav-link:hover {
    color: #d4b499; /* Golden Nude Color */
    opacity: 1; /* Full brightness on hover */
    letter-spacing: 4px; /* Slight expansion effect */
}

/* Hover par ek barik line niche se reveal hogi */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Shuru mein line ghaib hogi */
    height: 1px;
    background-color: #d4b499;
    transition: width 0.4s ease;
}

.nav-link:hover::after {
    width: 100%; /* Hover par line poori reveal hogi */
}


.btn-primary {
    /* --- Basic Structure --- */
    position: relative;
    padding: 18px 45px;
    background: #d4b499; /* Primary Golden Nude */
    color: #000000; /* Contrast black text */
    border: 2px solid #d4b499;
    border-radius: 50px; /* Fully rounded elegant shape */
    
    /* --- Typography --- */
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    overflow: hidden; /* Shine effect ke liye zaroori hai */
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

/* --- The Luxury "Shine" Animation --- */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: all 0.6s;
    z-index: -1;
}

/* --- Hover Effects --- */
.btn-primary:hover {
    background: transparent; /* Background khali ho jayega */
    color: #ffffff; /* Text white ho jayega */
    border-color: #ffffff; /* Border white ho jayega */
    transform: translateY(-5px) scale(1.05); /* Thora upar uthega */
    box-shadow: 0 15px 30px rgba(212, 180, 153, 0.3); /* Subtle gold glow */
}

/* Shine effect triggers on hover */
.btn-primary:hover::before {
    left: 100%;
}

/* --- Active Click Effect --- */
.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

/* --- Mobile Fix --- */
@media (max-width: 768px) {
    .btn-primary {
        padding: 15px 35px;
        font-size: 0.75rem;
        width: 80%; /* Mobile par bada button asan hota hai click karne mein */
    }
}


.navbar.sticky { top: 0; width: 100%; border-radius: 0; background: rgba(10, 10, 10, 0.9); }

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.brand-name { font-family: var(--font-heading); font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase; }
.aesthetic-word { font-family: var(--font-fancy); font-style: italic; color: var(--primary); font-weight: 300; }

.nav-right { display: flex; align-items: center; gap: 15px; }

.book-btn {
    background: var(--white); color: var(--dark); border: none;
    padding: 8px 18px; border-radius: 30px; font-size: 0.65rem;
    font-weight: 700; text-transform: uppercase; cursor: pointer;
}

/* Hamburger Fix */
.menu-toggle {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
}
.menu-toggle span { width: 22px; height: 1.5px; background: white; transition: 0.3s; }

/* Sidebar Logic */
.sidebar {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
    background: var(--dark); z-index: 2000; padding: 100px 40px;
    transition: 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    border-left: 1px solid rgba(255,255,255,0.1);
}
.sidebar.active { right: 0; }
.sidebar-nav { display: flex; flex-direction: column; gap: 30px; }
.sidebar-nav a { 
    color: white; text-decoration: none; font-family: var(--font-heading);
    font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px;
}
.close-sidebar { position: absolute; top: 30px; right: 30px; font-size: 2rem; cursor: pointer; }

/* Hero Section */
.hero-video-section {
    height: 100vh; position: relative; display: flex; align-items: center;
    justify-content: center; text-align: center;
}
.bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }

.hero-content { position: relative; z-index: 5; padding: 0 20px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 8vw, 6rem); line-height: 1; }
.stylish-accent { font-family: var(--font-fancy); font-style: italic; color: var(--primary); }
.hero-desc { margin: 20px auto; max-width: 400px; font-weight: 200; opacity: 0.8; font-size: 0.9rem; }

/* Mobile Specific Fixes */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .navbar { width: 95%; padding: 10px 15px; }
    .brand-name { font-size: 0.9rem; letter-spacing: 2px; }
    .book-btn { padding: 6px 12px; font-size: 0.6rem; }
    .sidebar { width: 100%; } /* Full screen mobile menu */
}


/* --- Hamburger Menu Styling --- */

/* 1. Pehle isay Desktop (Laptop) par HIDE kar do */
#menu-btn {
    display: none; /* Laptop view mein bilkul nazar nahi aayega */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

#menu-btn span {
    width: 28px;
    height: 2px;
    background: #fff; /* Line ka color */
    display: block;
    transition: 0.3s;
}

/* 2. Ab Media Query se isay sirf MOBILE/TABLET par SHOW karo */
@media (max-width: 991px) {
    #menu-btn {
        display: flex; /* Mobile par 3-lines wapis aa jayengi */
    }
}