/*
 * ============================================================
 *  BistroNova – Main Stylesheet
 *  Fine Dining & Culinary Art HTML Theme
 * ============================================================
 *
 *  Design Philosophy:
 *    Elegant, slow, and ethereal. Every animation is intentionally
 *    slow (AOS 2500ms), hover effects use letter-spacing expansion,
 *    and colour transitions use 0.6s cubic-bezier easing.
 *
 *  Colour Palette:
 *    Metallic Gold  #d4af37
 *    Dark Gold      #b8962e
 *    Near Black     #111111
 *    Off White      #fcfcfc
 *    Body Text      #555555
 *    Muted Text     #999999
 *    Border         #e8e8e8
 *
 *  Typography:
 *    Headings  → Lora (serif, Google Fonts)
 *    Body      → Montserrat (sans-serif, Google Fonts)
 *
 *  Table of Contents:
 *    1.  CSS Variables
 *    2.  Base / Reset
 *    3.  Typography
 *    4.  Buttons
 *    5.  Navbar
 *    6.  Preloader
 *    7.  Hero Section (full-screen)
 *    8.  Page Hero (half-screen + breadcrumb)
 *    9.  Section Header
 *    10. Parallax Banner
 *    11. Menu Items
 *    12. Gallery
 *    13. Chef Cards
 *    14. Footer
 *    15. Back to Top
 *    16. Utilities
 *    17. Responsive Breakpoints
 * ============================================================
 */


/* ===== 1. CSS VARIABLES ===== */

:root {
    /* Colours */
    --primary-color:   #d4af37;              /* Metallic Gold */
    --primary-dark:    #b8962e;              /* Dark Gold (hover state) */
    --dark-color:      #111111;              /* Near Black */
    --light-color:     #fcfcfc;              /* Off White */
    --body-color:      #555555;              /* Body text */
    --muted-color:     #999999;              /* Muted / placeholder text */
    --border-color:    #e8e8e8;              /* Subtle borders */
    --overlay-dark:    rgba(0, 0, 0, 0.55);  /* Hero / banner overlay */
    --overlay-darker:  rgba(0, 0, 0, 0.70);  /* Deeper overlay variant */

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body:    'Montserrat', sans-serif;

    /* Transitions */
    --transition-speed: 0.6s;
    --transition-fast:  0.3s;
    --transition-ease:  cubic-bezier(0.25, 1, 0.5, 1);

    /* Spacing */
    --section-padding:    100px 0;
    --section-padding-sm:  60px 0;
}


/* ===== 2. BASE / RESET ===== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Text selection – theme gold */
::selection {
    background-color: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: #fff;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-color);
    color: var(--body-color);
    letter-spacing: 0.5px;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast) ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* ===== 3. TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: 400;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--primary-color) !important;
}

.text-dark-custom {
    color: var(--dark-color) !important;
}


/* ===== 4. BUTTONS ===== */

/* Outlined gold button – transparent background, gold border */
.btn-gold {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    border-radius: 0;
    transition: background-color var(--transition-fast) ease,
                color var(--transition-fast) ease,
                border-color var(--transition-fast) ease;
    display: inline-block;
}

.btn-gold:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Solid gold button – filled gold background */
.btn-solid-gold {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 12px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    border-radius: 0;
    transition: background-color var(--transition-fast) ease,
                color var(--transition-fast) ease,
                border-color var(--transition-fast) ease;
    display: inline-block;
}

.btn-solid-gold:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
}

/* Dark outlined button – for use on light backgrounds */
.btn-dark-outline {
    background-color: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    padding: 12px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    border-radius: 0;
    transition: background-color var(--transition-fast) ease,
                color var(--transition-fast) ease,
                border-color var(--transition-fast) ease;
    display: inline-block;
}

.btn-dark-outline:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}


/* ===== 5. NAVBAR ===== */

/* Default state: transparent, positioned over hero */
.navbar {
    background-color: transparent;
    padding: 30px 0;
    transition: all 0.5s ease;
    z-index: 1050;
}

/* Scrolled state: solid dark background (added via JS at scrollY > 50) */
.navbar.scrolled {
    background-color: rgba(17, 17, 17, 0.98);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Brand / logo */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff !important;
    letter-spacing: 3px;
}

.navbar-brand span {
    color: var(--primary-color);
}

/* Nav links */
.nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2px;
    margin: 0 12px;
    transition: color var(--transition-fast) ease;
    padding: 8px 0 !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast) ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger icon colour */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* ===== 6. PRELOADER ===== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 20px;
}

.preloader-logo span {
    color: var(--primary-color);
}

/* Animated gold line that fills left-to-right */
.preloader-line {
    width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    animation: fillLine 1.8s var(--transition-ease) forwards;
}

@keyframes fillLine {
    to { width: 100%; }
}


/* ===== 7. HERO SECTION (full-screen – index.html) ===== */

.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    color: #fff;
}

/* Dark overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 3px;
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
}

.hero-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}


/* ===== 8. PAGE HERO (half-screen – inner pages) ===== */

.page-hero {
    height: 60vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    color: #fff;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-darker);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.page-hero-title {
    font-size: 3rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

/* Breadcrumb inside page hero */
.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast) ease;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-hero .breadcrumb-item.active {
    color: var(--primary-color);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}


/* ===== 9. SECTION HEADER ===== */

.section-header {
    margin-bottom: 60px;
}

/* Small italic label above the main title */
.section-eyebrow {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

/* Main section title */
.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

/* Thin gold divider line */
.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Left-aligned variant */
.section-header.text-start .section-divider {
    margin: 0;
}

/* Section padding utility */
.section-pad {
    padding: var(--section-padding);
}

.section-pad-sm {
    padding: var(--section-padding-sm);
}


/* ===== 10. PARALLAX BANNER ===== */

.parallax-banner {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.6;
    display: block;
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.6rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 1px;
}


/* ===== 11. MENU ITEMS ===== */

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 10px;
    margin-bottom: 10px;
    transition: background var(--transition-fast) ease,
                padding-left var(--transition-fast) ease;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 0.04);
    padding-left: 16px;
}

.menu-item h4 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
}

.menu-item .price {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 16px;
    flex-shrink: 0;
}

.menu-desc {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--muted-color);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* Dietary badges */
.diet-badge {
    font-size: 0.75rem;
    margin-left: 6px;
    vertical-align: middle;
}

/* Chef's Special highlight */
.menu-item.chef-special {
    border-left: 2px solid var(--primary-color);
    padding-left: 14px;
}


/* ===== 12. GALLERY ===== */

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 1.2s var(--transition-ease);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast) ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

/* Filter buttons */
.gallery-filter .btn-filter {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--body-color);
    padding: 8px 24px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-fast) ease;
    margin: 4px;
}

.gallery-filter .btn-filter:hover,
.gallery-filter .btn-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}


/* ===== 13. CHEF CARDS ===== */

.chef-card {
    position: relative;
    overflow: hidden;
}

.chef-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 1.2s var(--transition-ease);
    display: block;
}

.chef-card:hover img {
    transform: scale(1.05);
}

.chef-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-darker);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-fast) ease;
}

.chef-card:hover .chef-overlay {
    opacity: 1;
}

.chef-info {
    padding: 20px 0 10px;
}

.chef-info h4 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.chef-title {
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
    font-family: var(--font-heading);
}

.chef-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-right: 12px;
    transition: color var(--transition-fast) ease;
}

.chef-social a:hover {
    color: var(--primary-color);
}


/* ===== 14. FOOTER ===== */

.bistro-footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}

/* Footer logo */
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 3px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

/* Column headings */
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Quick links list */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    transition: color var(--transition-fast) ease,
                letter-spacing var(--transition-fast) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

/* Opening hours list */
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
}

.hours-day {
    color: rgba(255, 255, 255, 0.7);
}

.hours-time {
    color: var(--primary-color);
}

.footer-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* Contact info list */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast) ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all var(--transition-fast) ease;
}

.footer-social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Bottom copyright bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}


/* ===== 15. BACK TO TOP ===== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast) ease,
                visibility var(--transition-fast) ease,
                background-color var(--transition-fast) ease;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-color);
}


/* ===== 16. UTILITIES ===== */

/* Image hover zoom wrapper */
.img-zoom-wrapper {
    overflow: hidden;
}

.img-zoom-wrapper img {
    transition: transform 1.2s var(--transition-ease);
    width: 100%;
}

.img-zoom-wrapper:hover img {
    transform: scale(1.05);
}

/* Thin gold horizontal rule */
.gold-rule {
    border: none;
    height: 1px;
    background-color: var(--primary-color);
    opacity: 0.4;
    margin: 40px 0;
}

/* Countdown units (offers.html) */
.countdown-unit {
    text-align: center;
    min-width: 80px;
}

.countdown-unit span {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.countdown-unit small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-color);
    display: block;
    margin-top: 6px;
}

/* Bootstrap is-invalid override for theme consistency */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}


/* ===== 17. RESPONSIVE BREAKPOINTS ===== */

/* ── Large tablets (≤ 992px) ── */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .page-hero-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background-color: rgba(17, 17, 17, 0.98);
        padding: 20px;
        margin-top: 10px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-link {
        margin: 4px 0;
    }

    .btn-gold.ms-lg-3 {
        margin-top: 16px;
        display: inline-block;
    }
}

/* ── Tablets (≤ 768px) ── */
@media (max-width: 768px) {
    /* Disable fixed parallax on touch devices (iOS Safari performance) */
    .hero-section,
    .page-hero,
    .parallax-banner {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }

    .page-hero-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    :root {
        --section-padding: 70px 0;
    }
}

/* ── Mobile (≤ 576px) ── */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-hero {
        height: 50vh;
    }

    .page-hero-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-gold,
    .btn-solid-gold,
    .btn-dark-outline {
        padding: 10px 28px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    :root {
        --section-padding: 60px 0;
        --section-padding-sm: 40px 0;
    }
}


/* ===== 18. TIMELINE ===== */
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--border-color); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 40px); margin-bottom: 50px; position: relative; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 40px); }
.timeline-dot { position: absolute; left: 50%; top: 20px; width: 12px; height: 12px; background: var(--primary-color); border-radius: 50%; transform: translateX(-50%); }
.timeline-content { background: #fff; border: 1px solid var(--border-color); padding: 24px 28px; max-width: 380px; }
.timeline-year { font-family: var(--font-heading); color: var(--primary-color); font-size: 1.4rem; font-style: italic; margin-bottom: 8px; }
.timeline-content h4 { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.timeline-content p { font-size: 0.85rem; color: var(--muted-color); margin: 0; }
@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 60px; }
  .timeline-dot { left: 20px; }
}

/* ===== 19. VALUE CARDS ===== */
.value-card { text-align: center; padding: 40px 30px; border: 1px solid var(--border-color); transition: box-shadow var(--transition-fast) ease; }
.value-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.value-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 20px; display: block; }
.value-card h4 { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.value-card p { font-size: 0.85rem; color: var(--muted-color); margin: 0; line-height: 1.7; }

/* ===== 20. MENU TABS ===== */
.menu-nav .nav-link {
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--dark-color) !important;
    background-color: #fff;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 32px;
    margin: 4px;
    transition: all var(--transition-fast) ease;
}
.menu-nav .nav-link:hover,
.menu-nav .nav-link.active,
.menu-nav .nav-link[aria-selected="true"] {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}
.menu-category-title { font-family: var(--font-heading); font-style: italic; color: var(--primary-color); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 30px; }
.menu-item-info { flex: 1; }
/* Ensure tab pane content is always visible */
.tab-pane { color: var(--body-color); }
.tab-pane .menu-item h4 { color: var(--dark-color); }
.tab-pane .menu-desc { color: var(--muted-color); }

/* ===== 21. FORMS ===== */
.form-control, .form-select { border-radius: 0; border-color: var(--border-color); font-family: var(--font-body); font-size: 0.85rem; padding: 12px 16px; transition: border-color var(--transition-fast) ease, box-shadow var(--transition-fast) ease; }
.form-control:focus, .form-select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.15); }
.form-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--dark-color); margin-bottom: 8px; font-family: var(--font-body); }
.info-panel { background: var(--dark-color); padding: 40px; color: rgba(255,255,255,0.7); }
.info-panel h5 { color: #fff; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; font-family: var(--font-body); font-weight: 600; }
.info-panel .info-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.85rem; }
.info-panel .info-item i { color: var(--primary-color); margin-top: 3px; flex-shrink: 0; }
.info-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; }
.info-hours .day { color: rgba(255,255,255,0.6); }
.info-hours .time { color: var(--primary-color); }

/* ===== 22. CONTACT CARDS ===== */
.contact-card { text-align: center; padding: 40px 24px; border: 1px solid var(--border-color); transition: box-shadow var(--transition-fast) ease; }
.contact-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-card-icon { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 16px; display: block; }
.contact-card h5 { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.contact-card p { font-size: 0.85rem; color: var(--muted-color); margin: 0; line-height: 1.7; }

/* ===== 23. BLOG ===== */
.blog-card { background: #fff; border: 1px solid var(--border-color); overflow: hidden; transition: box-shadow var(--transition-fast) ease; }
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.blog-card-img img { height: 220px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 24px; }
.blog-category { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--primary-color); font-family: var(--font-body); display: block; margin-bottom: 10px; }
.blog-title { font-size: 1.05rem; letter-spacing: 1px; margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: var(--dark-color); transition: color var(--transition-fast) ease; }
.blog-title a:hover { color: var(--primary-color); }
.blog-meta { font-size: 0.75rem; color: var(--muted-color); letter-spacing: 1px; margin-bottom: 16px; }
.btn-read-more { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-color); transition: letter-spacing var(--transition-fast) ease; }
.btn-read-more:hover { letter-spacing: 4px; color: var(--dark-color); }
.sidebar-widget { margin-bottom: 40px; }
.sidebar-widget-title { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--dark-color); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); font-family: var(--font-body); font-weight: 600; }
.sidebar-recent-post { display: flex; gap: 12px; margin-bottom: 16px; }
.sidebar-recent-post img { width: 70px; height: 70px; object-fit: cover; flex-shrink: 0; }
.sidebar-recent-post h6 { font-size: 0.82rem; margin-bottom: 4px; line-height: 1.4; }
.sidebar-recent-post span { font-size: 0.72rem; color: var(--muted-color); }
.sidebar-categories li { padding: 8px 0; border-bottom: 1px solid var(--border-color); font-size: 0.82rem; }
.sidebar-categories a { color: var(--body-color); transition: color var(--transition-fast) ease, padding-left var(--transition-fast) ease; display: block; }
.sidebar-categories a:hover { color: var(--primary-color); padding-left: 6px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--border-color); color: var(--body-color); transition: all var(--transition-fast) ease; }
.tag:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.featured-post-card { border: 1px solid var(--border-color); overflow: hidden; }
.featured-post-card img { height: 400px; object-fit: cover; width: 100%; transition: transform 1.2s var(--transition-ease); }
.featured-post-card:hover img { transform: scale(1.03); }
.featured-post-body { padding: 32px; }

/* ===== 24. ARTICLE ===== */
.article-meta { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-color); margin-bottom: 24px; }
.article-meta span { margin-right: 16px; }
.article-body p { font-size: 0.95rem; line-height: 1.9; color: var(--body-color); margin-bottom: 1.5rem; }
.article-body h3 { font-size: 1.4rem; margin: 2rem 0 1rem; }
blockquote.bistro-quote { border-left: 3px solid var(--primary-color); padding: 20px 30px; margin: 2rem 0; background: rgba(212,175,55,0.04); }
blockquote.bistro-quote p { font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: var(--dark-color); margin: 0; }
.author-box { display: flex; gap: 24px; padding: 32px; border: 1px solid var(--border-color); margin-top: 40px; }
.author-box img { width: 90px; height: 90px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.author-box h5 { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.author-box .author-role { font-size: 0.75rem; color: var(--primary-color); letter-spacing: 2px; text-transform: uppercase; font-style: italic; font-family: var(--font-heading); }
.author-box p { font-size: 0.85rem; color: var(--muted-color); margin: 8px 0 0; }

/* ===== 25. OFFERS & EVENTS ===== */
.offer-card { border: 1px solid var(--border-color); overflow: hidden; transition: box-shadow var(--transition-fast) ease; }
.offer-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.offer-card img { height: 220px; object-fit: cover; width: 100%; transition: transform 1.2s var(--transition-ease); }
.offer-card:hover img { transform: scale(1.05); }
.offer-card-body { padding: 24px; }
.offer-badge { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; background: var(--primary-color); color: #fff; padding: 4px 12px; display: inline-block; margin-bottom: 12px; }
.offer-card h4 { font-size: 1rem; letter-spacing: 1px; margin-bottom: 10px; }
.offer-validity { font-size: 0.75rem; color: var(--muted-color); letter-spacing: 1px; margin-bottom: 16px; }
.event-card { padding: 32px; border: 1px solid var(--border-color); transition: box-shadow var(--transition-fast) ease; }
.event-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.event-date-badge { display: inline-block; background: var(--primary-color); color: #fff; padding: 8px 16px; font-family: var(--font-heading); font-size: 0.9rem; margin-bottom: 16px; }
.event-time { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-color); margin-bottom: 12px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; }
.newsletter-form input { flex: 1; border-radius: 0; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; padding: 12px 20px; font-size: 0.85rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary-color); }
.newsletter-form button { border-radius: 0; white-space: nowrap; }

/* ===== 26. 404 PAGE ===== */
.error-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background-color: var(--dark-color); padding: 120px 20px; }
.error-number { font-family: var(--font-heading); font-size: 10rem; color: var(--primary-color); opacity: 0.25; line-height: 1; display: block; margin-bottom: 0; }
.error-title { font-size: 2rem; letter-spacing: 6px; text-transform: uppercase; color: #fff; font-weight: 300; margin-bottom: 20px; }
.error-desc { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 480px; margin: 0 auto 40px; line-height: 1.8; }
.gold-rule { width: 60px; height: 1px; background: var(--primary-color); margin: 0 auto 32px; display: block; }


/* ===== 27. ADDITIONAL RESPONSIVE RULES ===== */

/* Blog cards */
@media (max-width: 768px) {
    .blog-card-img img { height: 180px; }
    .featured-post-card img { height: 240px; }
    .featured-post-body { padding: 24px; }
    .author-box { flex-direction: column; align-items: center; text-align: center; }
    .author-box img { margin-bottom: 16px; }
}

/* Timeline */
@media (max-width: 576px) {
    .timeline-content { padding: 16px 18px; }
    .timeline-year { font-size: 1.1rem; }
}

/* Offers & Events */
@media (max-width: 768px) {
    .offer-card img { height: 180px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input,
    .newsletter-form button { width: 100%; }
}

/* Countdown */
@media (max-width: 576px) {
    .countdown-unit span { font-size: 2rem; }
    #countdown { gap: 16px; }
}

/* Info panel (reservation) */
@media (max-width: 992px) {
    .info-panel { margin-top: 40px; }
}

/* Chef cards */
@media (max-width: 576px) {
    .chef-card img { height: 280px; }
}

/* Gallery items */
@media (max-width: 576px) {
    .gallery-item img { height: 200px; }
}

/* Pagination */
.pagination .page-link {
    border-radius: 0;
    color: var(--dark-color);
    border-color: var(--border-color);
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 8px 16px;
}
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Accordion theme override */
.accordion-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.06);
    color: var(--dark-color);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}
.accordion-button::after {
    filter: none;
}
.accordion-item {
    border-color: var(--border-color);
    border-radius: 0 !important;
}
.accordion-button {
    font-family: var(--font-body);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    border-radius: 0 !important;
}


/* ===== 28. PAGE HERO DARK (no image variant – reservation page) ===== */
.page-hero-dark {
    background-color: var(--dark-color);
    padding: 160px 20px 80px;
    text-align: center;
    color: #fff;
}

.page-hero-dark .page-hero-title {
    color: #fff;
}

.page-hero-dark .hero-subtitle {
    color: var(--primary-color);
}

.page-hero-dark .breadcrumb-item {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero-dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast) ease;
}

.page-hero-dark .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-hero-dark .breadcrumb-item.active {
    color: var(--primary-color);
}

.page-hero-dark .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}


/* ===== NAVBAR DROPDOWN (Pages) ===== */
.dropdown-menu-dark {
    background-color: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    padding: 8px 0;
    min-width: 180px;
}
.dropdown-menu-dark .dropdown-item {
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: color var(--transition-fast) ease, background var(--transition-fast) ease;
}
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    background-color: rgba(212,175,55,0.08);
    color: var(--primary-color);
}
.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(255,255,255,0.06);
    margin: 4px 0;
}
.nav-link.dropdown-toggle::after {
    border-top-color: rgba(255,255,255,0.5);
    vertical-align: 0.15em;
}
