/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    --gold: #d4af37;
    --gold-dark: #b58d23;
    --bg-dark: #0f1115;
    --bg-darker: #0a0a0a;
    --bg-light: #fdfbf7;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #888888;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 100px 0; }
.padding-small { padding: 60px 0; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.bg-light { background-color: #f7f4ee; }
.bg-dark { background-color: var(--bg-dark); }
.text-light { color: var(--text-light) !important; }
.text-light-muted { color: var(--text-muted); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn i { margin-right: 8px; }

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-dark);
    border: 1px solid var(--bg-dark);
}

.btn-outline:hover {
    background-color: var(--bg-dark);
    color: var(--gold);
}

/* Titles */
.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--bg-dark);
    margin-bottom: 25px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    transition: var(--transition);
    z-index: 1000;
}
.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text-light); letter-spacing: 1px;}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 1.5rem; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background-color: var(--bg-darker); z-index: 1001; display: flex;
    flex-direction: column; justify-content: center; align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 30px;}
.mobile-nav-links a { color: #fff; font-family: var(--font-heading); font-size: 2.5rem; transition: var(--transition); }
.mobile-nav-links a:hover { color: var(--gold); }

/* Floating Social */
.floating-social {
    position: fixed; right: 20px; bottom: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999;
}
.float-btn {
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; font-size: 1.8rem; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s ease;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.float-whatsapp { background-color: #25d366; }
.float-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-swiggy { background-color: #fc8019; }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?q=80&w=1934&auto=format&fit=crop') center/cover no-repeat;
    position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
    padding-top: 80px;
}
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.95) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.subtitle { font-family: var(--font-body); color: var(--gold); text-transform: uppercase; letter-spacing: 5px; font-size: 1rem; margin-bottom: 20px; display: block; }
.main-title { font-size: 5.5rem; color: var(--text-light); line-height: 1; margin-bottom: 30px; letter-spacing: 2px; }
.hero-description { color: #e0e0e0; font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Animations for Hero */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s ease forwards;}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* Scroll Indicator */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
.mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.6); border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 6px; background: var(--gold); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
@keyframes scroll { 0% { top: 8px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* Stats Section */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { color: #fff; }
.stat-number { font-family: var(--font-heading); font-size: 4rem; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat-text { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; color: rgba(255,255,255,0.7); }

/* About Section */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-img { width: 100%; height: 600px; object-fit: cover; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.experience-badge { position: absolute; bottom: -30px; right: -30px; background-color: var(--gold); color: var(--bg-dark); width: 140px; height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border-radius: 50%; border: 10px solid var(--bg-light); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }
.experience-badge .number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.experience-badge .text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content p { color: #555; margin-bottom: 20px; font-size: 1.05rem; }
.features-list { margin-top: 30px; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; font-weight: 500; color: var(--bg-dark); }
.features-list i { color: var(--gold); margin-right: 15px; font-size: 1.2rem; }

/* Menu Highlight Section */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.menu-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); }
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.menu-img-container { height: 250px; overflow: hidden; }
.menu-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.menu-card:hover .menu-img-container img { transform: scale(1.1); }
.menu-info { padding: 30px; text-align: center; position: relative; }
.menu-info h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; color: var(--bg-darker); }
.menu-info p { color: #666; font-size: 0.95rem; margin-bottom: 15px; }
.menu-info .price { display: inline-block; color: var(--gold); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; }

/* Events Section */
.events-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.events-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; box-shadow: -20px 20px 0 var(--gold); }
.events-content .features-list i { color: var(--bg-dark); }

/* Testimonials Section */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimoinal-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.stars { color: var(--gold); font-size: 1.5rem; margin-bottom: 20px; letter-spacing: 5px; }
.review-text { font-style: italic; color: #555; margin-bottom: 25px; line-height: 1.8; }
.reviewer-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--bg-dark); }

/* Gallery Section */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; gap: 20px; margin-top: 50px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-item.item-large { grid-row: span 2; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.6); display: flex; justify-content: center; align-items: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-text { color: var(--text-light); font-family: var(--font-heading); font-size: 2rem; transform: translateY(20px); transition: var(--transition); }
.gallery-item:hover .gallery-text { transform: translateY(0); }

/* Contact Section */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info-item { display: flex; margin-bottom: 30px; }
.icon-box { width: 50px; height: 50px; background-color: rgba(212, 175, 55, 0.1); color: var(--gold); display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 1.2rem; margin-right: 20px; flex-shrink: 0; }
.info-text h4 { color: var(--text-light); font-family: var(--font-body); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 5px; }
.info-text p { color: rgba(255,255,255,0.7); }

.social-card { background: #171a21; border: 1px solid rgba(255,255,255,0.05); padding: 40px; border-radius: 8px; }
.social-card h3 { color: var(--gold); font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 15px; }
.social-card p { color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.social-links-large { display: flex; flex-direction: column; gap: 15px; }
.social-btn { display: flex; align-items: center; padding: 15px 25px; background: rgba(255,255,255,0.03); border-radius: 4px; color: #fff; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.social-btn i { font-size: 1.5rem; margin-right: 15px; width: 30px; text-align: center; }
.social-btn:hover { transform: translateX(10px); color: #fff; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.social-btn.facebook:hover { background: #1877f2; border-color: transparent; }
.social-btn.whatsapp:hover { background: #25d366; border-color: transparent; }
.social-btn.swiggy:hover { background: #fc8019; border-color: transparent; }

/* Footer */
.footer { background-color: #050505; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.watermark { color: rgba(255,255,255,0.3); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }

/* Scroll Anim Class */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive Design */
@media (max-width: 992px) {
    .main-title { font-size: 4rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; }
    .about-image-wrapper { order: -1; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .events-wrapper { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .main-title { font-size: 3rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.item-large { grid-row: span 1; }
    .experience-badge { width: 100px; height: 100px; bottom: -20px; right: -10px; }
    .experience-badge .number { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .floating-social { right: 10px; bottom: 20px; }
    .float-btn { width: 50px; height: 50px; font-size: 1.4rem; }
}
