:root {
    --primary: #E59835; 
    --primary-hover: #c98227;
    --secondary: #1a1e18; 
    --whatsapp: #25D366; 
    --location-pin: #E63946; 
    --bg-light: #F4F6F8;
    --text-dark: #212529;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; padding-bottom: 110px; }

/* --- Hero Section --- */
.hero {
    background: linear-gradient(to bottom, rgba(26, 30, 24, 0.7), rgba(26, 30, 24, 0.95)), 
                url('https://images.unsplash.com/photo-1533777857889-4be7c70b33f7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    min-height: 90vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--white); padding: 20px;
}

.hero-main-img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 4px solid var(--primary); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; margin-bottom: 10px; line-height: 1.1; text-transform: uppercase; }
.hero h1 span { color: var(--primary); }
.hero p.desc { font-size: 1.15rem; margin-bottom: 20px; color: #d1d5db; max-width: 650px; }
.hero p.hours { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 30px; background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; border: 1px solid rgba(229, 152, 53, 0.3); }

/* Buttons */
.btn { background-color: var(--primary); color: var(--white); padding: 15px 25px; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; transition: 0.3s; }
.btn:hover { background-color: var(--primary-hover); transform: translateY(-3px); }
.btn-whatsapp { background-color: var(--whatsapp); }
.btn-location { background-color: var(--location-pin); animation: pulse-red 2s infinite; }
@keyframes pulse-red { 0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); } 100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); } }

/* --- Scrolling Reviews Marquee --- */
.reviews-container { background: var(--secondary); padding: 25px 0; overflow: hidden; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); }
.reviews-track { display: flex; width: max-content; animation: scroll-left 45s linear infinite; gap: 20px; padding-left: 20px; }
.review-card { background: var(--white); padding: 15px; border-radius: 10px; width: 320px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.review-header { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--primary); }
.review-stars { color: #FBBC05; font-size: 0.9rem; }
.review-text { font-size: 0.85rem; color: #444; font-style: italic; line-height: 1.5; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Sections & Layout --- */
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* --- HIGH VISIBILITY DIETARY SEO SECTION --- */
.dietary-seo-section { max-width: 850px; margin: 0 auto 50px auto; text-align: center; }
.dietary-highlights { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 15px; }

.diet-hl-item { background: var(--white); padding: 16px 28px; border-radius: 50px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 2px solid; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.diet-hl-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.diet-hl-item h3 { font-size: 1.15rem; font-weight: 800; margin: 0; line-height: 1; }
.diet-hl-gf { color: var(--primary); border-color: rgba(229, 152, 53, 0.4); }
.diet-hl-gf i { font-size: 1.4rem; }
.diet-hl-veg { color: #1e8e3e; border-color: rgba(30, 142, 62, 0.3); }
.diet-hl-veg i { font-size: 1.4rem; }
.dietary-seo-text { color: var(--text-muted); font-size: 1rem; margin-top: 25px; line-height: 1.6; }
.dietary-seo-text strong { color: var(--secondary); font-weight: 700; }

/* --- MOBILE SLIDER ENGINE --- */
.menu-category { margin-bottom: 50px; }
.menu-category-title { font-size: 2rem; color: var(--secondary); border-left: 5px solid var(--primary); padding-left: 15px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.slider-container { display: flex; gap: 20px; overflow-x: auto; padding: 10px 5px 25px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slider-container::-webkit-scrollbar { display: none; }

.card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.06); flex: 0 0 280px; scroll-snap-align: start; display: flex; flex-direction: column; }
.card-img { width: 100%; height: 180px; object-fit: cover; }
.card-content { padding: 15px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
.card-content h4 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 5px; }
.card-content p { color: #666; font-size: 0.9rem; }

@media (min-width: 1024px) { .slider-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); overflow-x: visible; } .card { flex: unset; } }

.badges-wrapper { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.diet-badge { font-size: 0.65rem; padding: 3px 8px; border-radius: 6px; font-weight: 700; text-transform: uppercase; }
.badge-v { background: #e6f4ea; color: #1e8e3e; } 
.badge-spicy { background: #fce8e6; color: #d93025; } 
.badge-gf { background: #fef7e0; color: #b06000; }

/* --- Reservation Form --- */
.reservation-box { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid input, .form-grid select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 1rem; }
.form-grid input:focus, .form-grid select:focus { outline: none; border-color: var(--primary); }
.full-width { grid-column: 1 / -1; }

/* --- Sports Section Banner --- */
.sports-banner { background: linear-gradient(rgba(26, 30, 24, 0.85), rgba(26, 30, 24, 0.85)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; color: var(--white); border-radius: 20px; padding: 40px 20px; margin-top: 40px; }

/* --- FAQ Slider Specific Styling --- */
.faq-card { background: var(--white); padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-left: 4px solid var(--primary); }
.faq-card h4 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.3; }
.faq-card h4 i { color: var(--primary); margin-top: 4px; font-size: 1rem; }
.faq-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- Hotel Map Section --- */
.hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; margin-top: 20px; }
.hotel-btn { background: var(--white); color: var(--secondary); padding: 15px; border-radius: 10px; text-decoration: none; font-weight: 600; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 10px rgba(0,0,0,0.05); font-size: 0.95rem; border: 1px solid #eee; }
.hotel-btn i { color: var(--primary); }
.hotel-btn:hover { border-color: var(--primary); transform: translateX(5px); }
.delivery-section { background: linear-gradient(rgba(26, 30, 24, 0.9), rgba(26, 30, 24, 0.9)), url('https://images.unsplash.com/photo-1526069631228-723c945bea6b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; color: var(--white); text-align: center; border-radius: 20px; padding: 50px 20px; margin-top: 40px; }

/* --- FIXED 5-ICON GRID NAVIGATION (Perfectly Centered) --- */
.floating-menu { 
    position: fixed; 
    bottom: 15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px); 
    display: grid; 
    grid-template-columns: 1fr 1fr auto 1fr 1fr; 
    gap: 5px; 
    padding: 8px 12px; 
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); 
    z-index: 1000; 
    width: 95%; 
    max-width: 450px; 
    align-items: center; 
    justify-items: center;
}

.float-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #666; font-size: 0.65rem; font-weight: 700; width: 100%; text-align: center; }
.float-item i { font-size: 1.2rem; margin-bottom: 3px; color: var(--secondary); }

/* Highlighted Book Button */
.float-item.reserve { color: var(--primary); background: rgba(229, 152, 53, 0.1); padding: 5px 0; border-radius: 10px; }
.float-item.reserve i { color: var(--primary); }

/* Raised Center Map Pin */
.float-item.center-location { background-color: var(--location-pin); color: var(--white) !important; padding: 12px 0; border-radius: 50%; width: 65px; height: 65px; display: flex; justify-content: center; align-items: center; transform: translateY(-20px); box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4); border: 3px solid var(--white); }
.float-item.center-location i { color: var(--white) !important; font-size: 1.4rem; margin-bottom: 0; }

.float-item.whatsapp i { color: var(--whatsapp); }

/* --- Detailed Multi-Language SEO Footprint --- */
.seo-footprint-box { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.seo-lang-title { color: #aaa; font-size: 0.85rem; text-transform: uppercase; margin: 25px 0 10px 0; letter-spacing: 1px; }
.seo-tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 10px; }
.seo-tag-link { color: #bbb; text-decoration: none; font-size: 0.75rem; background: rgba(255, 255, 255, 0.05); padding: 5px 12px; border-radius: 4px; transition: all 0.2s ease; display: inline-block; }
.seo-tag-link:hover { color: var(--primary); background: rgba(255, 255, 255, 0.1); }
.seo-paragraph-text { color: #888; font-size: 0.8rem; line-height: 1.6; max-width: 900px; margin: 30px auto 0 auto; text-align: justify; }