/* ==========================================================
   MASTER CSS - INDIAN FOOD FOREST (10-PAGE ARCHITECTURE)
   Engineered by QwickDesk Solutions
========================================================== */

/* --- 1. GLOBAL VARIABLES & RESETS --- */
:root {
    --bg-dark: #040905;
    --forest-green: #0a160d;
    --forest-light: #122616;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --text-white: #ffffff;
    --text-gray: #a8b8ae;
    --veg: #2ecc71;
    --nonveg: #e74c3c;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --glass-bg: rgba(10, 22, 13, 0.7);
    --glass-border: rgba(212, 175, 55, 0.15);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; } .mb-30 { margin-bottom: 30px; }
.text-gradient { background: linear-gradient(45deg, var(--gold-primary), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- 2. GLOBAL BUTTONS --- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 30px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: var(--transition); cursor: pointer; border: none; font-size: 0.9rem; }
.btn-primary { background: var(--gold-primary); color: var(--bg-dark); }
.btn-primary:hover { background: var(--text-white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212,175,55,0.3); }
.btn-solid-gold { background: linear-gradient(135deg, var(--gold-primary), #b38f24); color: var(--bg-dark); }
.btn-solid-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212,175,55,0.4); color: white;}
.btn-outline-light { border: 1px solid var(--text-white); color: var(--text-white); background: transparent; backdrop-filter: blur(5px); }
.btn-outline-light:hover { background: var(--text-white); color: var(--bg-dark); }
.btn-whatsapp { background: #25D366; color: white; border-radius: 30px; }
.btn-whatsapp:hover { background: #1ebc5a; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(37,211,102,0.3); }

/* --- 3. TOP BAR & NAVBAR --- */
.top-bar { background: #020503; padding: 8px 0; font-size: 0.8rem; color: var(--text-gray); border-bottom: 1px solid rgba(255,255,255,0.05); }
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; }
.divider { margin: 0 10px; opacity: 0.3; }
.contact-info i, .top-links i { color: var(--gold-primary); margin-right: 5px; }
.top-links a { margin-left: 15px; transition: var(--transition); }
.top-links a:hover { color: var(--gold-primary); }

.main-header { position: sticky; top: 0; width: 100%; z-index: 1000; background: var(--glass-bg); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); transition: var(--transition); }
.main-header.scrolled { background: rgba(4, 9, 5, 0.98); box-shadow: 0 10px 30px rgba(0,0,0,0.5); padding: 5px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; transition: var(--transition); }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; color: var(--gold-primary); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.logo-text .subtitle { font-size: 0.7rem; color: var(--gold-primary); letter-spacing: 2px; text-transform: uppercase; }

.nav-list { display: flex; gap: 30px; align-items: center; }
.nav-list > li > a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); position: relative; padding: 10px 0; }
.nav-list > li > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: var(--gold-primary); transition: var(--transition); }
.nav-list > li > a:hover::after, .nav-list > li > a.active::after { width: 100%; }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--gold-primary); }

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--forest-green); min-width: 220px; box-shadow: 0 15px 30px rgba(0,0,0,0.5); border: 1px solid var(--glass-border); border-top: 3px solid var(--gold-primary); border-radius: 0 0 8px 8px; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease; z-index: 100; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu a { display: block; padding: 12px 20px; color: var(--text-gray); font-size: 0.9rem; transition: var(--transition); }
.dropdown-menu a:hover, .dropdown-menu a.active-dropdown { background: rgba(212,175,55,0.1); color: var(--gold-primary); padding-left: 25px; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--text-white); background: transparent; border: none; cursor: pointer; }

/* --- 4. HERO SECTIONS --- */
/* Index Hero */
.hero-section { height: calc(100vh - 110px); position: relative; display: flex; align-items: center; justify-content: center; background: url('https://images.unsplash.com/photo-1542665952-1262d10e8d0e?q=80&w=2000') center/cover fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(4,9,5,0.8), rgba(10,22,13,0.9)); }
.hero-content { position: relative; z-index: 10; max-width: 800px; }
.hero-tagline { color: var(--gold-primary); font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; }
.hero-main-title { font-family: var(--font-head); font-size: 5rem; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; }
.hero-desc { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 40px; line-height: 1.8; }
.hero-btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gold-primary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-indicator i { font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

/* Inner Pages Hero */
.inner-hero { padding: 120px 0 80px; background-size: cover; background-position: center; border-bottom: 1px solid var(--glass-border); }
.inner-title { font-family: var(--font-head); font-size: 3.5rem; color: var(--gold-primary); margin-bottom: 15px; }
.inner-subtitle { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.breadcrumb { margin-bottom: 20px; font-size: 0.9rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; }
.breadcrumb a { color: var(--gold-primary); transition: var(--transition); }
.breadcrumb a:hover { color: var(--text-white); }
.breadcrumb i { margin: 0 10px; font-size: 0.8rem; }

/* --- 5. CATEGORY SHOWCASE (INDEX & MENU HUB) --- */
.category-grid, .hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.cat-card { background: var(--forest-green); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); display: block; }
.cat-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.cat-img { height: 200px; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover .cat-img img { transform: scale(1.1); }
.cat-content { padding: 25px; text-align: center; }
.cat-content h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 10px; color: var(--gold-primary); }
.cat-content p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 15px; }
.cat-link { color: var(--text-white); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.cat-card:hover .cat-link { color: var(--gold-primary); }

.hub-card { position: relative; height: 350px; border-radius: 16px; overflow: hidden; display: flex; align-items: flex-end; padding: 30px; text-decoration: none; border: 1px solid var(--glass-border); }
.hub-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s ease; filter: brightness(0.5); }
.hub-card:hover .hub-card-bg { transform: scale(1.1); filter: brightness(0.3); }
.hub-card-content { position: relative; z-index: 10; width: 100%; transition: var(--transition); }
.hub-icon { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 15px; }
.hub-card h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: white; }
.hub-card p { color: #d1d5db; font-size: 0.95rem; margin-bottom: 20px; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hub-btn { display: inline-block; color: var(--gold-primary); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.hub-card:hover .hub-card-content p { opacity: 1; transform: translateY(0); }

/* --- 6. MENU DETAILS LAYOUT (STARTERS, MAIN COURSE, ETC.) --- */
.menu-layout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.menu-block { background: var(--forest-green); padding: 40px; border-radius: 16px; border: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.block-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; border-bottom: 1px dashed rgba(212,175,55,0.3); padding-bottom: 15px; }
.block-header i { font-size: 2rem; }
.icon-veg { color: var(--veg); } .icon-nonveg { color: var(--nonveg); }
.block-header h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold-primary); }

.menu-items-list li { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.menu-items-list li:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.item-info { width: 75%; position: relative; padding-left: 20px; }
.diet-dot { position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; }
.veg-dot { background: var(--veg); box-shadow: 0 0 8px rgba(46,204,113,0.5); }
.nonveg-dot { background: var(--nonveg); box-shadow: 0 0 8px rgba(231,76,60,0.5); }
.item-info h4 { font-size: 1.1rem; color: var(--text-white); font-weight: 500; margin-bottom: 5px; }
.item-desc { font-size: 0.85rem; color: var(--text-gray); line-height: 1.4; }
.item-price { font-size: 1.2rem; font-weight: 700; color: var(--gold-primary); }
.new-badge { background: var(--nonveg); color: white; font-size: 0.6rem; padding: 2px 6px; border-radius: 4px; vertical-align: middle; margin-left: 8px; font-weight: bold; }

.order-cta-box { background: rgba(212,175,55,0.05); padding: 40px; border-radius: 16px; border: 1px solid var(--gold-primary); }
.order-cta-box h3 { font-family: var(--font-head); font-size: 2rem; color: var(--gold-primary); margin-bottom: 10px; }
.whatsapp-btn-group { display: flex; justify-content: center; gap: 15px; margin-top: 25px; flex-wrap: wrap; }

/* --- 7. FORMS & CONTACT (GLASSMORPHISM UI) --- */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); padding: 40px; border-radius: 16px; }
.form-title { font-family: var(--font-head); font-size: 2rem; color: var(--gold-primary); margin-bottom: 10px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-gray); }
.form-control { width: 100%; padding: 12px 15px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: white; border-radius: 6px; font-family: var(--font-body); font-size: 1rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--gold-primary); background: rgba(0,0,0,0.8); }

.contact-grid, .reservation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.section-tag { color: var(--gold-primary); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }
.section-title { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.contact-method, .info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.icon-box, .info-item i { width: 50px; height: 50px; background: rgba(212,175,55,0.1); color: var(--gold-primary); display: flex; justify-content: center; align-items: center; border-radius: 50%; font-size: 1.5rem; flex-shrink: 0; }
.method-details h3, .info-item h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--text-white); }
.method-details p, .info-item p { color: var(--text-gray); font-size: 0.95rem; }
.method-details a { color: var(--gold-primary); transition: var(--transition); }
.method-details a:hover { color: white; }

/* --- 8. STORY & CATERING SECTIONS --- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image-stack { position: relative; height: 500px; }
.img-back { position: absolute; width: 70%; height: 80%; object-fit: cover; border-radius: 12px; top: 0; right: 0; }
.img-front { position: absolute; width: 65%; height: 75%; object-fit: cover; border-radius: 12px; bottom: 0; left: 0; border: 5px solid var(--bg-dark); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.stats-row { display: flex; gap: 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-box h3 { font-family: var(--font-head); font-size: 2.5rem; }
.stat-box p { font-size: 0.85rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.team-card { background: var(--forest-light); padding: 40px 30px; border-radius: 12px; text-align: center; border: 1px solid var(--glass-border); transition: var(--transition); }
.team-card:hover { transform: translateY(-10px); border-color: var(--gold-primary); }
.team-icon { width: 80px; height: 80px; background: var(--gold-primary); color: var(--bg-dark); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; margin: 0 auto 20px; }
.team-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.team-role { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; }
.team-contact { display: inline-block; color: var(--gold-primary); font-weight: 600; font-size: 0.9rem; }

.catering-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.catering-card { background: var(--forest-green); border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.catering-card .card-img { height: 220px; }
.catering-card .card-content { padding: 30px; }
.catering-card h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-primary); margin-bottom: 15px; }
.inquiry-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.perks-list li { margin-bottom: 15px; font-size: 1.1rem; }

/* --- 9. GLOBAL FOOTER --- */
.site-footer { background: #020503; padding: 80px 0 20px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.footer-logo { margin-bottom: 20px; }
.footer-about p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.8; max-width: 400px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; margin-right: 10px; transition: var(--transition); color: var(--text-white); }
.social-icons a:hover { background: var(--gold-primary); color: var(--bg-dark); transform: translateY(-3px); }
.footer-links h3, .footer-contact h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--text-white); margin-bottom: 25px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-gray); transition: var(--transition); font-size: 0.95rem; }
.footer-links ul li a:hover { color: var(--gold-primary); padding-left: 5px; }
.footer-links i { font-size: 0.8rem; margin-right: 8px; color: var(--gold-primary); }
.contact-list li { display: flex; gap: 15px; margin-bottom: 20px; color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }
.contact-list i { color: var(--gold-primary); font-size: 1.2rem; margin-top: 3px; }
.phones a { display: block; color: var(--text-gray); margin-bottom: 5px; transition: var(--transition); }
.phones a:hover { color: var(--text-white); }

.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #6b7280; font-size: 0.85rem; display: flex; flex-direction: column; gap: 10px; }
.agency-credit a { color: var(--text-gray); font-weight: 600; transition: var(--transition); }
.agency-credit a:hover { color: var(--gold-primary); }

/* --- 10. MEDIA QUERIES (MOBILE RESPONSIVENESS) --- */
@media (max-width: 991px) {
    .hero-main-title { font-size: 3.5rem; }
    .inner-title { font-size: 2.8rem; }
    .menu-layout-grid, .contact-grid, .reservation-grid, .story-grid, .inquiry-flex { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .story-image-stack { height: 400px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Mobile Menu Magic */
    .nav-menu { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: rgba(4,9,5,0.98); backdrop-filter: blur(10px); transition: 0.4s ease-in-out; overflow-y: auto; padding: 40px 20px; border-top: 1px solid rgba(255,255,255,0.05); }
    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; width: 100%; }
    .nav-list > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-list > li > a { display: block; padding: 15px 0; font-size: 1.1rem; }
    
    /* Mobile Dropdown Fix */
    .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.02); min-width: 100%; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 20px; }
    .dropdown.active .dropdown-menu { display: block; }
    
    .hero-main-title { font-size: 2.5rem; }
    .hero-btn-group { flex-direction: column; padding: 0 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-row { flex-direction: column; gap: 20px; }
                     }
  
