:root {
    --primary-gold: #e5b34a; /* Golden accent color */
    --primary-gold-hover: #c49635;
    --bg-dark: #121212;      /* Main background */
    --bg-card: #1e1e1e;      /* Card background */
    --bg-footer: #0a0a0a;
    --text-main: #f5f5f5;
    --text-muted: #aaaaaa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-speed: 0.3s;
}



body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden!important;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    color: var(--primary-gold);
}

/* Utilities */
.text-muted {
    color: var(--text-muted) !important;
}

.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background-color: var(--primary-gold) !important; color: #000 !important; }

/* Consistent Section Padding for all sections */
.section-padding { padding: 80px 0; }

/* Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: #121212;
    font-weight: 600;
    border: 1px solid var(--primary-gold);
    padding: 10px 24px;
    transition: all var(--transition-speed) ease;
    border-radius: 4px;
}
.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    color: #000;
}
.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    font-weight: 600;
    padding: 10px 24px;
    transition: all var(--transition-speed) ease;
    border-radius: 4px;
}
.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: #121212;
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.4s ease;
    padding: 15px 0;
}
.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--text-main) !important;
}
.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color var(--transition-speed);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4px;
    border: 1px solid rgba(229, 179, 74, 0.3);
}
.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 15px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}
.lang-btn:hover {
    color: var(--text-main);
}
.lang-btn.active {
    background: var(--primary-gold);
    color: #121212;
}

/* Hero Section Container */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -76px; /* Offset for navbar */
    padding-top: 76px;
    overflow: hidden;
    background-color: #000;
}

/* Raw WebGL Canvas */
#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: grab;
    background-color: #000;
}

#webgl-canvas:active {
    cursor: grabbing;
}

/* Dark Gradient Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8));
    z-index: 2;
    pointer-events: none; /* Passes clicks through to the canvas */
}

/* Your Text & Buttons */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    pointer-events: auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

/* Menu Cards (Home page) */
.menu-card {
    background-color: var(--bg-card);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    height: 100%;
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.menu-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.menu-card-body {
    padding: 20px;
}
.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.menu-title-row h5 {
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}
.menu-price {
    color: var(--text-main);
    font-weight: 700;
}
.menu-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}
.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}


/* =========================================
   NEW: Dedicated Menu Page Styles
========================================= */

/* Offset the fixed header for non-hero pages */
.page-header {
    padding-top: 150px;
    padding-bottom: 50px;
}
.page-header p {
    max-width: 600px;
    font-size: 1.1rem;
}

.menu-content {
    background-color: var(--bg-card);
}

.menu-section {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-section-title {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-size: 2rem;
}

/* Filter Tab Pills */
.menu-filter-btn {
    background-color: #1a1a1a;
    color: var(--text-main);
    border: 1px solid #333;
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}
.menu-filter-btn:hover, .menu-filter-btn.active {
    background-color: var(--primary-gold);
    color: #121212;
    border-color: var(--primary-gold);
}

/* List Item Layout */
.menu-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(229, 179, 74, 0.3);
}

.menu-item-img {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #333;
}

.menu-item-content {
    flex-grow: 1;
}

.menu-list-item h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}
.menu-list-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Dietary/Spicy Icons */
.icon-veg {
    color: #28a745;
    font-size: 0.9rem;
}
.icon-spicy {
    color: #dc3545;
    font-size: 0.9rem;
}

/* Outline "Popular" Badge for List Items */
.badge-popular-outline {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    display: inline-block;
}

/* Solid "Popular" Badge for List Items */
.badge-popular-solid {
    background-color: #332714;
    color: var(--primary-gold);
    border-radius: 12px;
    font-weight: normal;
    padding: 4px 8px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    vertical-align: middle;
    display: inline-block;
}

/* Empty Section Placeholder */
.empty-section-icon {
    font-size: 2rem;
    color: #333;
}

/* PDF Download Card */
.pdf-download-wrapper {
    max-width: 800px;
}
.pdf-download-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #333;
}
.pdf-download-card h4 {
    font-family: var(--font-body);
    font-weight: 700;
}
.pdf-download-card small {
    font-size: 0.8rem;
}
.pdf-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
}

/* Reserve CTA Section */
.reserve-tonight-section {
    background-color: var(--bg-card);
}
.reserve-tonight-section p {
    font-size: 1.1rem;
}


/* =========================================
   NEW: Gallery & About Page Styles
========================================= */

/* Gallery Grid Styling */
.gallery-item-wrap {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.page-gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item-wrap:hover .page-gallery-img {
    transform: scale(1.05);
}

/* Philosophy Section Styling */
.philosophy-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(229, 179, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}
.philosophy-icon-wrap:hover {
    background-color: var(--primary-gold);
    color: #121212;
}

/* =========================================
   NEW: Reserve Page Styles
========================================= */

.reservation-form-wrap, .contact-info-wrap {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    border: 1px rgba(234, 196, 88, 0.25) solid;
}

.reservation-form-wrap h3, .contact-info-wrap h3 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Form Controls */
.form-label {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label .text-danger {
    color: var(--primary-gold) !important; /* Make the asterisk gold instead of red to match theme */
}

.form-control, .form-select {
    background-color: #121212;
    border: 1px solid #333;
    color: var(--text-main);
    border-radius: 6px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: #1a1a1a;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(229, 179, 74, 0.25);
    color: var(--text-main);
}

.form-control::placeholder {
    color: #666;
}

/* Override default date picker icon color for dark mode */
::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.6);
    cursor: pointer;
}

/* Contact Info Boxes */
.contact-icon-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon-box i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 4px;
    width: 35px;
}

.contact-icon-box-content h5 {
    font-family: var(--font-body);
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-icon-box-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Icons */
.social-follow-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #121212;
    color: var(--text-main);
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #333;
}

.social-follow-icons a:hover {
    background-color: var(--primary-gold);
    color: #121212;
    border-color: var(--primary-gold);
}


/* ========================================= */

/* Gallery Row (Used on Home Page) */
.gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.8;
    transition: opacity var(--transition-speed);
}
.gallery-img:hover {
    opacity: 1;
}

/* Story Section */
.story-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-main);
}
.feature-item i {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Reviews Section */
.review-card {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}
.stars i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}
.review-text {
    color: var(--text-main);
    font-style: italic;
    margin: 15px 0;
    line-height: 1.6;
}
.reviewer-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Advertisement Banner */
.ad-banner {
    background-color: var(--bg-card);
    border: 1px dashed #444;
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
    border-radius: 8px;
    margin: 40px 0;
}

/* Contact/Visit Us Section */
.contact-info-block {
    margin-bottom: 25px;
}
.contact-info-block h4 {
    font-family: var(--font-body);
    color: var(--text-main);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.contact-info-block h4 i {
    color: var(--primary-gold);
    margin-right: 10px;
}
.contact-info-block p {
    color: var(--text-muted);
    margin-left: 28px;
    margin-bottom: 5px;
    line-height: 1.6;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--bg-footer);
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}
.footer-logo {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: inline-block;
}
.footer-heading {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-speed);
}
.footer-links a:hover { color: var(--primary-gold); }
.social-icons a {
    color: var(--text-main);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}
.social-icons a:hover { color: var(--primary-gold); }
.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* Back to Top */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-gold);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: background-color var(--transition-speed);
    border: none;
}
#backToTop:hover {
    background-color: var(--primary-gold-hover);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .section-padding { padding: 50px 0; }
    .lang-switcher { margin-bottom: 15px; justify-content: center; }
}




.review-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}
.review-text {
    font-style: italic;
    color: #ccc;
}
.reviewer-info {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #aaa;
}

.guest-reviews-slider .review-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    margin: 0 10px; /* Add horizontal space between slides */
}
