/* ==========================================================================
   SHAAM E VIRAASAT - PREMIUM HERITAGE RESTAURANT WEBSITE STYLE SHEET
   ========================================================================== */

/* IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS CUSTOM PROPERTIES (DESIGN SYSTEM) */
:root {
    /* Color Palette - Customized Emerald Green Theme */
    --heritage-brown: #f7eac0;
    /* Champagne ivory gold */
    --heritage-brown-rgb: 247, 234, 192;
    --royal-gold: #f7eac0;
    /* Champagne ivory gold */
    --royal-gold-rgb: 247, 234, 192;
    --royal-gold-dark: #c6ba8b;
    /* Medium champagne gold */
    --ivory-cream: #1f342d;
    /* Deep dark forest green background */
    --ivory-cream-rgb: 31, 52, 45;
    --terracotta: #f7eac0;
    /* Champagne ivory gold */
    --deep-maroon: #f7eac0;
    /* Champagne ivory gold */
    --text-dark: #CFDAD4;
    /* Light sage-gray/silver-green for body text */
    --text-dark-rgb: 207, 218, 212;
    --text-light: #F7F3EA;
    /* Ivory white for light texts */
    --white: #13241e;
    /* Card background - darker green for contrast */
    --white-rgb: 19, 36, 30;
    --bg-card: #091c20;
    /* Very dark background for alternate sections */

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Layout Variables */
    --header-height: 90px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(46, 27, 22, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(46, 27, 22, 0.08), 0 4px 6px -2px rgba(46, 27, 22, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(46, 27, 22, 0.12), 0 10px 10px -5px rgba(46, 27, 22, 0.04);
    --shadow-glow: 0 0 15px rgba(200, 160, 106, 0.3);
}

/* RESET & BASE STYLES */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--ivory-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heritage-brown);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Jharokha / Royal Border for Headings */
h2.decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 25 0, 50 5 T 100 5' fill='none' stroke='%23C8A06A' stroke-width='2'/%3E%3Ccircle cx='50' cy='5' r='2' fill='%236B1F1F'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

h2.decorated.left-align::after {
    left: 0;
    transform: none;
}

p {
    font-size: 1rem;
    color: rgba(35, 21, 18, 0.8);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ivory-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--heritage-brown);
    border: 2px solid var(--ivory-cream);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--royal-gold);
}

/* BUTTONS & ACTIONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--heritage-brown);
    color: var(--ivory-cream);
}

.btn-primary:hover {
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--royal-gold);
    color: var(--heritage-brown);
}

.btn-secondary:hover {
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--deep-maroon);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--terracotta);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* SECTIONS & CONTAINER */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-bg-alt {
    background-color: var(--white);
    border-top: 1px solid rgba(200, 160, 106, 0.15);
    border-bottom: 1px solid rgba(200, 160, 106, 0.15);
}

.section-bg-dark {
    background-color: var(--heritage-brown);
    color: var(--ivory-cream);
}

.section-bg-dark h2 {
    color: var(--royal-gold);
}

.section-bg-dark p {
    color: rgba(247, 243, 234, 0.8);
}

/* ROYAL PATTERN BACKGROUND DECOR */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    background-image: radial-gradient(var(--royal-gold) 1px, transparent 0);
    background-size: 24px 24px;
}

/* HEADER / STICKY NAVIGATION */
.header-wrapper {
    position: absolute;
    /* Non-sticky header that scrolls with the page */
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(247, 243, 234, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 160, 106, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    transition: var(--transition-smooth);
    margin-top: 5px;
    /* optical center correction for overflow look */
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--heritage-brown);
    letter-spacing: 0.1em;
    line-height: 1;
    transition: var(--transition-smooth);
}

.logo-subtext {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--terracotta);
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--heritage-brown);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--royal-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--royal-gold-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--heritage-brown);
    transition: var(--transition-fast);
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--heritage-brown);
    border-left: 2px solid var(--royal-gold);
    z-index: 999;
    padding: 100px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ivory-cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 160, 106, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--royal-gold);
    padding-left: 8px;
    border-bottom-color: var(--royal-gold);
}

/* HERO SECTION */
.hero-sec {
    min-height: 80vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(46, 27, 22, 0.8), rgba(46, 27, 22, 0.65), rgba(46, 27, 22, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    color: var(--ivory-cream);
}

.hero-estd {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--royal-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-block;
    border-top: 1px solid var(--royal-gold);
    border-bottom: 1px solid var(--royal-gold);
    padding: 6px 20px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.35rem;
    font-style: italic;
    color: rgba(247, 243, 234, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* QUICK ENQUIRY BAR */
.quick-enquiry-sec {
    background-color: var(--heritage-brown);
    border: 1px solid var(--royal-gold);
    border-bottom: 4px solid var(--royal-gold);
    padding: 25px 30px;
    position: relative;
    z-index: 10;
    margin-top: -45px;
    /* Floats over the hero section */
    border-radius: var(--border-radius-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.quick-enquiry-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr) auto;
    gap: 15px;
    width: 100%;
    align-items: flex-end;
}

.quick-enquiry-form .form-response-message {
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 15px;
}

.quick-enquiry-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-enquiry-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--royal-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quick-enquiry-control {
    width: 100%;
    height: 44px;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(200, 160, 106, 0.4);
    background-color: var(--ivory-cream);
    /* Warm premium cream background */
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition-smooth);
}

.quick-enquiry-control::placeholder {
    color: rgba(35, 21, 18, 0.5);
}

.quick-enquiry-control:focus {
    border-color: var(--royal-gold);
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(200, 160, 106, 0.3);
}

.quick-enquiry-control option {
    background-color: var(--white);
    color: var(--text-dark);
}

.quick-enquiry-btn {
    height: 44px;
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
    border: 2px solid var(--royal-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 30px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-enquiry-btn:hover {
    background-color: transparent;
    color: var(--royal-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

@media (max-width: 1240px) {
    .quick-enquiry-sec {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 1024px) {
    .quick-enquiry-sec {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        max-width: 100%;
        padding: 30px 20px;
    }

    .quick-enquiry-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-enquiry-btn {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .quick-enquiry-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-enquiry-btn {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .quick-enquiry-form {
        grid-template-columns: 1fr;
    }

    .quick-enquiry-btn {
        grid-column: span 1;
    }

    .hero-title,
    .about-hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle,
    .about-hero-subtitle,
    .about-hero-content p {
        font-size: 0.95rem;
    }

    .about-hero-banner {
        height: 240px;
    }

    .hero-estd {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        padding: 4px 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* HERITAGE TIMELINE (ABOUT / HOME) */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--royal-gold);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--heritage-brown);
    border: 2px solid var(--royal-gold);
    color: var(--royal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
}

.timeline-content {
    width: 45%;
    background-color: var(--bg-card);
    border: 1px solid rgba(200, 160, 106, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--royal-gold);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-maroon);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* DYNAMIC MENU FILTER ENGINE */
.menu-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.menu-search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border-radius: 30px;
    border: 1px solid rgba(200, 160, 106, 0.3);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.menu-search-input:focus {
    border-color: var(--royal-gold);
    box-shadow: var(--shadow-glow);
}

.menu-search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--royal-gold);
    pointer-events: none;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    background-color: var(--white);
    border: 1px solid rgba(200, 160, 106, 0.2);
    color: var(--heritage-brown);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--heritage-brown);
    color: var(--royal-gold);
    border-color: var(--heritage-brown);
}

.menu-type-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.type-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--heritage-brown);
}

.type-checkbox-label input {
    accent-color: var(--terracotta);
}

.type-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-veg {
    background-color: #2e7d32;
}

.dot-nonveg {
    background-color: #c62828;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    transition: opacity 0.3s ease;
}

.menu-item-card {
    background-color: var(--white);
    border: 1px solid rgba(200, 160, 106, 0.15);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.menu-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--royal-gold);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.menu-item-title-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heritage-brown);
}

.menu-item-type-badge {
    width: 14px;
    height: 14px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-item-type-badge.veg {
    border-color: #2e7d32;
}

.menu-item-type-badge.non-veg {
    border-color: #c62828;
}

.menu-item-type-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.menu-item-type-badge.veg::before {
    background-color: #2e7d32;
}

.menu-item-type-badge.non-veg::before {
    background-color: #c62828;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--deep-maroon);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: rgba(35, 21, 18, 0.7);
    margin-bottom: 0;
    line-height: 1.5;
}

/* NO MENU ITEMS MATCH FOUND */
.menu-no-results {
    grid-column: span 2;
    text-align: center;
    padding: 60px 20px;
    color: var(--terracotta);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* SIGNATURE DISHES SHOWCASE (STORYTELLING CAROUSEL) */
.signature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200, 160, 106, 0.2);
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
    display: flex;
}

.signature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.signature-img-box {
    width: 50%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.signature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.signature-card:hover .signature-img {
    transform: scale(1.05);
}

.signature-text-box {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signature-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--royal-gold-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
}

.signature-name {
    font-size: 2rem;
    margin-bottom: 15px;
}

.signature-history {
    font-family: var(--font-subheading);
    font-style: italic;
    color: var(--terracotta);
    font-size: 0.95rem;
    margin-bottom: 20px;
    border-left: 2px solid var(--royal-gold);
    padding-left: 15px;
}

.signature-ingredients {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(200, 160, 106, 0.15);
}

.signature-ingredients span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--heritage-brown);
}

.signature-ingredients p {
    font-size: 0.88rem;
    margin-top: 5px;
    margin-bottom: 0;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(46, 27, 22, 0.03);
    padding: 10px 15px;
    border-radius: 40px;
    border: 1px solid rgba(200, 160, 106, 0.12);
    margin: 0 auto 45px auto;
    flex-wrap: wrap;
    max-width: max-content;
    box-shadow: inset 0 2px 4px 0 rgba(46, 27, 22, 0.04);
}

.gallery-filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    background-color: var(--white);
    border: 1px solid rgba(200, 160, 106, 0.25);
    color: var(--heritage-brown);
    box-shadow: 0 2px 4px 0 rgba(46, 27, 22, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    outline: none;
}

.gallery-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--heritage-brown);
    border-radius: 50%;
    opacity: 0.08;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.gallery-filter-btn:hover {
    color: var(--deep-maroon);
    border-color: var(--royal-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(46, 27, 22, 0.08);
}

.gallery-filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.gallery-filter-btn.active {
    background-color: var(--heritage-brown);
    color: var(--royal-gold);
    border-color: var(--heritage-brown);
    box-shadow: 0 8px 16px 0 rgba(46, 27, 22, 0.15);
    transform: translateY(-2px);
}

.gallery-grid {
    columns: 4 250px;
    column-gap: 20px;
    width: 100%;
}

.gallery-item {
    background-color: var(--white);
    border: 1px solid rgba(200, 160, 106, 0.15);
    border-radius: var(--border-radius);
    padding: 10px;
    margin-bottom: 20px;
    break-inside: avoid;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--royal-gold);
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.gallery-img-box {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-caption {
    margin-top: 10px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heritage-brown);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 27, 22, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-content-box {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border: 3px solid var(--royal-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--ivory-cream);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--royal-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(200, 160, 106, 0.15);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: auto;
    transition: var(--transition-fast);
}

.lightbox-arrow:hover {
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
}

.lightbox-arrow-left {
    margin-left: -70px;
}

.lightbox-arrow-right {
    margin-right: -70px;
}

.lightbox-caption {
    color: var(--royal-gold);
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* REVIEWS CAROUSEL */
.reviews-carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(200, 160, 106, 0.15);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: var(--royal-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heritage-brown);
}

.review-author-date {
    font-size: 0.75rem;
    color: rgba(35, 21, 18, 0.5);
}

.reviews-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(200, 160, 106, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--heritage-brown);
    width: 25px;
    border-radius: 5px;
}

/* FORMS - RESERVATION & INQUIRY */
.form-box {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 160, 106, 0.2);
    box-shadow: var(--shadow-md);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: var(--terracotta);
    font-family: var(--font-subheading);
    font-style: italic;
    margin-bottom: 35px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heritage-brown);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(200, 160, 106, 0.3);
    background-color: var(--ivory-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--royal-gold);
    background-color: var(--white);
    box-shadow: var(--shadow-glow);
}

.form-btn-box {
    grid-column: span 2;
    text-align: center;
    margin-top: 15px;
}

/* Form Message Alert styles */
.form-response-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-response-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-response-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* WHY CHOOSE US CARDS */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(200, 160, 106, 0.15);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--royal-gold);
}

.why-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(200, 160, 106, 0.12);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
    box-shadow: var(--shadow-glow);
}

.why-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.9rem;
    color: rgba(35, 21, 18, 0.7);
    line-height: 1.5;
    margin-bottom: 0;
}

/* BLOG LISTING */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(200, 160, 106, 0.15);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--royal-gold);
}

.blog-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--heritage-brown);
    border: 1px solid var(--royal-gold);
    color: var(--royal-gold);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    padding: 4px 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--terracotta);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-desc {
    font-size: 0.88rem;
    color: rgba(35, 21, 18, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--heritage-brown);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.blog-card:hover .blog-read-more {
    color: var(--royal-gold-dark);
}

/* CONTACT PAGE STYLING */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: var(--white);
    border: 1px solid rgba(200, 160, 106, 0.15);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(200, 160, 106, 0.12);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-card-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-card-content a:hover {
    color: var(--terracotta);
}

.contact-map-box {
    margin-top: 50px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--royal-gold);
    box-shadow: var(--shadow-md);
    height: 400px;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER SECTION */
.footer-sec {
    background-color: var(--heritage-brown);
    color: var(--ivory-cream);
    padding: 80px 0 30px 0;
    border-top: 3px solid var(--royal-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--royal-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--royal-gold);
}

.footer-col-about p {
    color: rgba(247, 243, 234, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(247, 243, 234, 0.08);
    color: var(--royal-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--royal-gold);
    color: var(--heritage-brown);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.88rem;
    color: rgba(247, 243, 234, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--royal-gold);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(247, 243, 234, 0.7);
}

.footer-contact-item i {
    color: var(--royal-gold);
    margin-top: 3px;
}

.footer-map-preview {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(200, 160, 106, 0.3);
    height: 150px;
}

.footer-map-preview iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 243, 234, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(247, 243, 234, 0.5);
}

/* FLOATING WIDGETS */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

@keyframes floatWhatsApp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* STICKY RESERVE TABLE BAR FOR MOBILE */
.sticky-reserve-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--heritage-brown);
    border-top: 2px solid var(--royal-gold);
    padding: 12px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 998;
}

.sticky-reserve-text {
    color: var(--ivory-cream);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.sticky-reserve-bar .btn {
    padding: 6px 14px;
    font-size: 0.75rem;
}

/* BREADCRUMBS */
.breadcrumbs-bar {
    background-color: rgba(200, 160, 106, 0.05);
    border-bottom: 1px solid rgba(200, 160, 106, 0.1);
    padding: 12px 0;
    font-size: 0.8rem;
    margin-top: 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(35, 21, 18, 0.6);
}

.breadcrumb-separator {
    color: var(--royal-gold);
}

.breadcrumb-active {
    color: var(--terracotta);
    font-weight: 600;
}

/* INTERACTIVE TIMELINE PAGE (ABOUT US HERO BANNER) */
.about-hero-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--header-height);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 27, 22, 0.75);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--ivory-cream);
    padding: 0 20px;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

.about-hero-title {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.about-hero-subtitle {
    font-family: var(--font-subheading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ivory-cream) !important;
    margin-bottom: 0;
}

/* ANIMATIONS AND REVEALS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .why-grid-4,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title,
    .about-hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle,
    .about-hero-subtitle,
    .about-hero-content p {
        font-size: 1.05rem;
    }

    .hero-estd {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        padding: 4px 15px;
        margin-bottom: 15px;
    }

    .about-hero-banner {
        height: 300px;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 40px;
    }

    .timeline-badge {
        left: 20px;
        transform: translate(-50%, 0);
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .signature-card {
        flex-direction: column !important;
    }

    .signature-img-box,
    .signature-text-box {
        width: 100%;
        min-height: auto;
    }

    .signature-text-box {
        padding: 30px;
    }

    .why-grid,
    .why-grid-4,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-box {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full,
    .form-btn-box {
        grid-column: span 1;
    }



    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .lightbox-arrow-left {
        margin-left: 0;
    }

    .lightbox-arrow-right {
        margin-right: 0;
    }
}

/* ==========================================================================
   PREMIUM ALTERNATING EVENT ROW CARDS
   ========================================================================== */
.event-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 70px;
}

.event-row-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200, 160, 106, 0.2);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.event-row-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--royal-gold);
}

.event-row-card:nth-child(even) {
    flex-direction: row-reverse;
}

.event-row-img-box {
    width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.event-row-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-row-card:hover .event-row-img {
    transform: scale(1.05);
}

.event-row-content {
    width: 50%;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-row-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--terracotta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    padding: 6px 16px;
    border-radius: 3px;
    width: max-content;
    align-self: flex-start;
    display: inline-block;
}

.event-row-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--heritage-brown);
    margin-bottom: 15px;
    font-weight: 700;
}

.event-row-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(35, 21, 18, 0.8);
    margin-bottom: 25px;
}

.event-row-btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 0.82rem;
    font-weight: 600;
}

@media (max-width: 768px) {

    .event-row-card,
    .event-row-card:nth-child(even) {
        flex-direction: column;
    }

    .event-row-img-box,
    .event-row-content {
        width: 100%;
    }

    .event-row-img-box {
        min-height: 250px;
    }

    .event-row-content {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   LUXURY DARK GREEN & GOLD THEME OVERRIDES
   ========================================================================== */

/* Body & Layout Adjustments */
body {
    background-color: var(--ivory-cream) !important;
    background-image: linear-gradient(135deg, rgba(31, 52, 45, 0.88), rgba(31, 52, 45, 0.88)), url('../images/luxury_green_pattern.png') !important;
    background-size: repeat !important;
    background-attachment: fixed !important;
    color: var(--text-dark) !important;
}

/* Headings color */
h1,
h2,
h3,
h4,
h5,
h6,
.decorated {
    color: var(--royal-gold) !important;
}

/* Paragraphs & Text */
p,
.why-desc,
.menu-item-desc,
.review-text,
.event-row-desc,
.footer-col p {
    color: var(--text-dark) !important;
}

/* Inline style color overrides for standard text colors */
[style*="color: rgba(35, 21, 18"],
[style*="color:rgba(35,21,18"],
[style*="color: rgba(35,21,18"] {
    color: var(--text-dark) !important;
}

/* Overriding section background styles in html - Parallax Reservation Section */
.section-bg-dark,
[style*="background-image: linear-gradient(to right, rgba(46, 27, 22"] {
    background-image: linear-gradient(to right, rgba(31, 52, 45, 0.93), rgba(9, 28, 32, 0.85)), url('../images/banner3.webp') !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Header & Navigation Overrides */
.header-wrapper {
    background-color: rgba(31, 52, 45, 0.95) !important;
    border-bottom: 1px solid rgba(247, 234, 192, 0.15) !important;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-light) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal-gold) !important;
}

/* Mobile Nav Drawer & Hamburger */
.mobile-nav-drawer {
    background-color: #13241e !important;
    border-left: 2px solid var(--royal-gold) !important;
}

.mobile-nav-link {
    color: var(--text-light) !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--royal-gold) !important;
}

.hamburger span {
    background-color: var(--royal-gold) !important;
}

/* Overriding custom icon backgrounds to luxury gold tint */
.why-icon,
.about-icon,
[style*="background-color: rgba(107, 31, 31"],
[style*="background-color: rgba(180, 95, 60"],
[style*="background-color: rgba(200, 160, 106"],
[style*="background-color: rgba(46, 27, 22"] {
    background-color: rgba(247, 234, 192, 0.1) !important;
    color: var(--royal-gold) !important;
}

.why-card:hover .why-icon {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
    box-shadow: var(--shadow-glow) !important;
}

/* Cards & Section Box Styles - Frosty Glassmorphism Effect */
.why-card,
.timeline-content,
.menu-item-card,
.signature-card,
.review-card,
.form-box,
.contact-info-card,
.event-row-card {
    background-color: rgba(19, 36, 30, 0.75) !important;
    /* Translucent frosty background */
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(247, 234, 192, 0.22) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
}

.why-card:hover,
.menu-item-card:hover,
.signature-card:hover,
.review-card:hover,
.event-row-card:hover {
    background-color: rgba(31, 52, 45, 0.8) !important;
    border-color: var(--royal-gold) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.48), var(--shadow-glow) !important;
}

/* Overlays */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(9, 28, 32, 0.75), rgba(9, 28, 32, 0.55), rgba(6, 17, 13, 0.95)) !important;
}

.about-hero-overlay {
    background: linear-gradient(to bottom, rgba(9, 28, 32, 0.85), rgba(6, 17, 13, 0.93)) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
    border: 2px solid var(--royal-gold) !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: var(--royal-gold) !important;
    border-color: var(--royal-gold) !important;
    box-shadow: var(--shadow-glow) !important;
}

.btn-secondary {
    background-color: transparent !important;
    border-color: var(--royal-gold) !important;
    color: var(--royal-gold) !important;
    border: 2px solid var(--royal-gold) !important;
}

.btn-secondary:hover {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
    border-color: var(--royal-gold) !important;
    box-shadow: var(--shadow-glow) !important;
}

.btn-accent {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
    border: 2px solid var(--royal-gold) !important;
}

.btn-accent:hover {
    background-color: transparent !important;
    color: var(--royal-gold) !important;
    border-color: var(--royal-gold) !important;
    box-shadow: var(--shadow-glow) !important;
}

/* Forms & Inputs */
.form-control,
.quick-enquiry-control {
    background-color: var(--bg-card) !important;
    color: var(--text-light) !important;
    border: 1px solid rgba(247, 234, 192, 0.25) !important;
}

.form-control:focus,
.quick-enquiry-control:focus {
    background-color: var(--white) !important;
    border-color: var(--royal-gold) !important;
    box-shadow: 0 0 10px rgba(247, 234, 192, 0.25) !important;
}

.form-control::placeholder,
.quick-enquiry-control::placeholder {
    color: rgba(207, 218, 212, 0.4) !important;
}

.form-control option,
.quick-enquiry-control option {
    background-color: #13241e !important;
    color: var(--text-light) !important;
}

/* Date input calendar picker icon - Off-White */
input[type="date"] {
    color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(0.95) !important;
    cursor: pointer;
    opacity: 0.95;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: brightness(0) invert(1) !important;
}

/* Filter buttons */
.filter-btn,
.gallery-filter-btn {
    background-color: var(--white) !important;
    color: var(--text-dark) !important;
    border: 1px solid rgba(247, 234, 192, 0.25) !important;
}

.filter-btn:hover,
.gallery-filter-btn:hover {
    color: var(--royal-gold) !important;
    border-color: var(--royal-gold) !important;
}

.filter-btn.active,
.gallery-filter-btn.active {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
    border-color: var(--royal-gold) !important;
    box-shadow: var(--shadow-glow) !important;
}



/* Decorative classes & page dividers */
.decorated::before {
    background-color: var(--royal-gold) !important;
}

h2.decorated::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 25 0, 50 5 T 100 5' fill='none' stroke='%23f7eac0' stroke-width='2'/%3E%3Ccircle cx='50' cy='5' r='2' fill='%23c6ba8b'/%3E%3C/svg%3E") !important;
    background-color: transparent !important;
}

/* Footer Accent Overrides */
footer,
.footer,
.footer-sec,
.footer-col {
    background-color: #091c20 !important;
}

.footer-bottom {
    background-color: transparent !important;
    /* Remove background-color to fix mismatch blocks */
    border-top: 1px solid rgba(247, 234, 192, 0.1) !important;
}

.footer-col h3 {
    color: var(--royal-gold) !important;
}

.social-link {
    border: 1px solid rgba(247, 234, 192, 0.25) !important;
    color: var(--royal-gold) !important;
}

.social-link:hover {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
    box-shadow: var(--shadow-glow) !important;
}

/* Breadcrumbs text */
.breadcrumbs-bar a {
    color: var(--text-dark) !important;
}

.breadcrumbs-bar a:hover {
    color: var(--royal-gold) !important;
}

.breadcrumb-active {
    color: var(--royal-gold) !important;
}

/* Timelines page dots and lines */
.timeline-container::before {
    background-color: rgba(247, 234, 192, 0.2) !important;
}

.timeline-dot {
    background-color: var(--royal-gold) !important;
    box-shadow: 0 0 10px var(--royal-gold) !important;
}

.timeline-date {
    color: var(--royal-gold) !important;
}

/* Events rows tags */
.event-row-tag {
    background-color: rgba(247, 234, 192, 0.1) !important;
    color: var(--royal-gold) !important;
    border: 1px solid rgba(247, 234, 192, 0.2) !important;
}

/* Selection highlight */
::selection {
    background-color: var(--royal-gold);
    color: #13241e;
}

/* Quick Enquiry Layout & Contrast Corrections */
.quick-enquiry-sec {
    background-color: #13241e !important;
    /* Dark green card background instead of bright green */
    border: 1px solid rgba(247, 234, 192, 0.3) !important;
    border-bottom: 4px solid var(--royal-gold) !important;
}

.quick-enquiry-group label {
    color: var(--text-light) !important;
    /* High contrast ivory white labels */
}

/* Hero Section Typography & Button Contrast Overrides */
.hero-title,
.about-hero-content h1 {
    color: var(--text-light) !important;
    /* Soft white/ivory text for contrast */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85) !important;
}

.hero-subtitle,
.about-hero-content p {
    color: #E2E8F0 !important;
    /* Lighter white/gray text */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
    font-weight: 500 !important;
}

.hero-btns .btn-secondary,
.about-hero-content .btn-secondary {
    background-color: rgba(19, 36, 30, 0.6) !important;
    /* Semi-transparent dark background for readability */
    border-color: var(--royal-gold) !important;
    color: var(--royal-gold) !important;
}

.hero-btns .btn-secondary:hover,
.about-hero-content .btn-secondary:hover {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
}

/* Color Palette Additions */
:root {
    --theme-accent-gold: #f7eac0;
}

/* Event List Card Tags and Titles */
.event-row-tag {
    color: var(--theme-accent-gold) !important;
}

.event-row-title {
    color: var(--text-light) !important;
}

.event-row-btn {
    background-color: rgba(19, 36, 30, 0.6) !important;
    border-color: var(--royal-gold) !important;
    color: var(--royal-gold) !important;
    border: 2px solid var(--royal-gold) !important;
}

.event-row-btn:hover {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
}

/* Timeline Badge Contrast */
.timeline-badge {
    background-color: #13241e !important;
    border: 2px solid var(--royal-gold) !important;
    color: var(--royal-gold) !important;
    box-shadow: 0 0 10px rgba(247, 234, 192, 0.4) !important;
}

.timeline-title {
    color: var(--theme-accent-gold) !important;
}

/* Reviews author and subtext readability */
.review-author-name {
    color: var(--theme-accent-gold) !important;
}

.review-author-date {
    color: rgba(207, 218, 212, 0.6) !important;
    /* Sage-gray with alpha for good readability */
}

.review-author-avatar {
    background-color: var(--royal-gold) !important;
    color: #13241e !important;
}

/* Footer Bottom Contrast Corrections */
.footer-bottom {
    color: rgba(207, 218, 212, 0.7) !important;
    /* Legible light sage-gray */
}

.footer-bottom a {
    color: rgba(207, 218, 212, 0.7) !important;
    transition: var(--transition-smooth) !important;
}

.footer-bottom a:hover {
    color: var(--royal-gold) !important;
    /* Turns champagne gold #f7eac0 on hover */
}

/* About Page Parallax Section Overrides */
.about-parallax-sec {
    position: relative;
    background-image: linear-gradient(135deg, rgba(31, 52, 45, 0.91), rgba(9, 28, 32, 0.83)), url('../images/IMG_3376.webp') !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.about-parallax-sec .bg-pattern {
    display: none !important;
    /* Hide background pattern decoration so parallax shows fully */
}

/* Home Page Specific Sections Frosted Parallax Background Override */
.home-parallax-sec {
    position: relative;
    background-image: linear-gradient(135deg, rgba(31, 52, 45, 0.91), rgba(9, 28, 32, 0.83)), url('../images/IMG_3376.webp') !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.home-parallax-sec .bg-pattern {
    display: none !important; /* Hide leafy pattern overlay so parallax stands out cleanly */
}

/* Signature Dishes Page Specific Sections Parallax Background Override */
.signature-parallax-sec {
    position: relative;
    background-image: linear-gradient(135deg, rgba(31, 52, 45, 0.91), rgba(9, 28, 32, 0.83)), url('../images/IMG_3376.webp') !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.signature-parallax-sec .bg-pattern {
    display: none !important; /* Hide leafy pattern overlay so parallax stands out cleanly */
}

/* Events Page Specific Sections Parallax Background Override */
.events-parallax-sec {
    position: relative;
    background-image: linear-gradient(135deg, rgba(31, 52, 45, 0.91), rgba(9, 28, 32, 0.83)), url('../images/IMG_3376.webp') !important;
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.events-parallax-sec .bg-pattern {
    display: none !important; /* Hide leafy pattern overlay so parallax stands out cleanly */
}