:root {
    /* Palette Chromatique de Luxe */
    --void-black: #000000;
    --rich-black: #050505;
    --anthracite: #121212;

    /* Semantic Colors (Default Dark) */
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --card-bg: #0a0a0a;
    --text-primary: #F9F9F4;
    /* Cream */
    --text-muted: #A0A0A0;
    --glass-bg: rgba(10, 10, 10, 0.8);
    --border-color: rgba(197, 160, 89, 0.15);

    /* Or Antique & Métallique */
    --gold: #C5A059;
    --gold-light: #E6CFA0;
    --gold-dark: #8A6E30;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #F3E5AB 50%, #997835 100%);
    --gold-text-gradient: linear-gradient(to right, #C5A059, #F3E5AB, #C5A059);

    /* Accents */
    --cream: #F9F9F4;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Effects */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.1);
}

/* Theme Light (Royal Day) */
body.light-theme {
    --bg-primary: #F9F8F4;
    /* Royal Cream */
    --bg-secondary: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-primary: #1a1a1a;
    --text-muted: #555555;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --border-color: rgba(197, 160, 89, 0.3);
    --shadow-soft: 0 10px 40px rgba(197, 160, 89, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.5s ease, color 0.5s ease;
}



a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

ul {
    list-style: none;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-heavy {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* ================= Moroccan Theme Details ================= */
.moroccan-pattern {
    background-color: #050505;
    /* Rich Moroccan Motif Pattern (CSS Gradient Simulation) */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
        linear-gradient(45deg, rgba(20, 20, 20, 1) 25%, transparent 25%, transparent 75%, rgba(20, 20, 20, 1) 75%, rgba(20, 20, 20, 1)),
        linear-gradient(45deg, rgba(20, 20, 20, 1) 25%, transparent 25%, transparent 75%, rgba(20, 20, 20, 1) 75%, rgba(20, 20, 20, 1));
    background-size: 100% 100%, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 20px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Moroccan Arch Shape for Images */
.moroccan-arch {
    border-radius: 200px 200px 0 0;
    border: 2px solid var(--gold);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
}

.moroccan-arch:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.moroccan-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.moroccan-arch:hover img {
    transform: scale(1.1);
}

/* Refined Gold Gradient & Shimmer */
.gold-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ================= Gold Dust Animation ================= */
.gold-dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Behind content, above bg */
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* Vignette */
}

.gold-dust {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: floatUp 15s linear infinite;
    opacity: 0;
}

.gold-dust:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.gold-dust:nth-child(2) {
    left: 20%;
    animation-duration: 15s;
    animation-delay: 2s;
    width: 3px;
    height: 3px;
}

.gold-dust:nth-child(3) {
    left: 35%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.gold-dust:nth-child(4) {
    left: 50%;
    animation-duration: 18s;
    animation-delay: 1s;
    width: 5px;
    height: 5px;
}

.gold-dust:nth-child(5) {
    left: 65%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.gold-dust:nth-child(6) {
    left: 80%;
    animation-duration: 16s;
    animation-delay: 5s;
    width: 2px;
    height: 2px;
}

.gold-dust:nth-child(7) {
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--gold);
    width: auto;
    height: auto;
    background: none;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.service-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 90%;
    margin-top: 1rem;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) scale(1.5);
        opacity: 0;
    }
}

/* Global Button Styles */
/* ================= Buttons ================= */
.gold-button {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7);
    background-size: 300% 100%;
    color: #3d2e10;
    /* Darker text for contrast on gold */
    padding: 1.2rem 3.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.5s ease;
    border: none;
    position: relative;
    overflow: hidden;
    /* For shine */
    z-index: 1;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.4);
    text-align: center;
    display: inline-block;
    animation: gradientShift 6s ease infinite;
}

.gold-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.6);
    letter-spacing: 0.2em;
    color: #2a1f0a;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shine effect */
.gold-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: -1;
}

.gold-button:hover::after {
    left: 100%;
    transition: 0.7s;
}

.outline-button {
    background: rgba(255, 255, 255, 0.05);
    /* Glassy base */
    backdrop-filter: blur(5px);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 1.2rem 3.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 50px;
    /* Pill shape */
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.outline-button:hover {
    background: var(--gold);
    color: #3d2e10;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
}



.outline-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    z-index: -1;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scaleX(0);
    transform-origin: right;
}

.outline-button:hover {
    color: var(--rich-black);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    letter-spacing: 0.25em;
}

.outline-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ================= Premium Features ================= */
/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
    /* Above navbar */
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-highlight));
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--gold);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Left or Right based on preference, standard is right */
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    border-color: var(--white);
    box-shadow: 0 0 20px #25d366;
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    /* Behind content but in front of background pattern */
    pointer-events: none;
}

/* Mobile Menu Staggered Animation Classes - MOVED TO MEDIA QUERY */
.nav-links li {
    /* Globally visible by default */
    opacity: 1;
    transform: none;
}

.nav-links.active li {
    /* Reset for desktop if needed, though active class is toggle-based */
    opacity: 1;
    transform: none;
}

/* Stagger delays handled in JS or Nth-child CSS (will use JS for dynamic) */

/* Gold Button Hover Effect (Enhanced) */
.gold-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.gold-button:hover::before {
    left: 100%;
}

/* ================= About & Stats ================= */
.about-section {
    background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)), url('assets/pattern-bg.png');
    /* Placeholder pattern */
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    text-align: left;
}

.chef-quote {
    font-family: var(--font-heading-alt);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 2rem 0;
}

.chef-quote span {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-style: normal;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-highlight);
    font-weight: bold;
}

.stat-item:last-child {
    grid-column: span 2;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 10% auto;
    width: 80%;
    max-width: 900px;
    background: #000;
    border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.close-modal {
    color: var(--gold);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: -40px;
    right: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================= Navbar ================= */
/* ================= Navbar ================= */
/* ================= Navbar (Capsule Style) ================= */
/* ================= Navbar (Creative Luxury) ================= */
/* ================= Navbar (Creative Luxury) ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Ultra smooth */
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    width: 90%;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    /* Floats from top */
    background: #000;
    /* Solid Black as requested */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 3rem;
    border-radius: 50px;
    /* Capsule Shape */
    border: 1px solid rgba(197, 160, 89, 0.4);
    /* Softer Gold Border */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(197, 160, 89, 0.2);
    /* Deep Shadow + Gold Glow */
    overflow: visible;
    /* CRITICAL: Allows dropdown to show outside capsule */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    /* Key for absolute centering */
}

.nav-logo img {
    height: 65px;
    /* Slightly larger initial */
    width: auto;
    filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.1));
    transition: all 0.4s ease;
}

/* Shrink Logo on Scroll */
.navbar.scrolled .nav-logo img {
    height: 50px;
    filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.4));
}

.theme-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    /* Push to right if flex */
    z-index: 1002;
}

.theme-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: rotate(15deg);
}

.nav-logo img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.6));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Desktop Centering Only */
@media (min-width: 769px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }
}

/* Link Styles - Minimalist with Gold Accent */
.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Prevent wrapping */
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* CTA Button in Navbar */
.nav-cta {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    /* Override link color */
    padding: 0.8rem 2rem !important;
    /* Override link padding */
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    transition: all 0.5s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
    /* Separation from other links */
}

.nav-links li a.nav-cta::before {
    display: none;
    /* Remove underline animation */
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--rich-black) !important;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

/* Scroll-Triggered Reservation Button */
.nav-btn-reservation {
    background: var(--gold);
    color: #000 !important;
    /* Contrast text */
    padding: 0.6rem 1.5rem !important;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.nav-btn-reservation:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Show on Scroll */
.navbar.scrolled .nav-btn-reservation {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Ensure line animation doesn't affect button */
.nav-links li a.nav-btn-reservation::before {
    display: none;
}

/* Visibility Utilities */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-flex;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Right-side positioning for desktop button */
a.nav-btn-reservation.desktop-only {
    margin-left: auto;
    /* Pushes to right in flex container */
    position: relative;
    right: 0;
}

/* Ensure Logo stays left, Links center, Button right */
.nav-container {
    justify-content: space-between;
    /* Default behavior helps */
}

/* Specifically for Scrolled Navbar to ensuring centering isn't disturbed */
.navbar.scrolled .nav-container {
    position: relative;
    /* Container reference */
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile menu overlay */
}


/* ================= Reservation Page Styles ================= */
.reservation-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.reservation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.card-ornament-top {
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.form-title {
    color: var(--gold);
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Floating Labels & Inputs */
.form-group.floating {
    position: relative;
    margin-bottom: 2rem;
}

.form-group.floating input,
.form-group.floating select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group.floating label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s;
}

.form-group.floating input:focus,
.form-group.floating input:not(:placeholder-shown),
.form-group.floating select:valid {
    border-bottom-color: var(--gold);
}

.form-group.floating input:focus+label,
.form-group.floating input:not(:placeholder-shown)+label,
.form-group.floating select:valid+label,
.form-group.floating select:focus+label,
.static-label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--gold);
}

.form-group.floating select {
    color: #fff;
}

.form-group.floating select option {
    background: #000;
}


/* Cleaned up styling */

/* ================= Hero Section ================= */
/* ================= Hero Section ================= */
/* ================= Creative Hero Section ================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('assets/image/hero.png');
    /* Authentic Luxury BG */
    background-size: cover;
    background-position: center;
    /* transform: scale(1.1); REMOVED fixed to allow animation per user request "ameliore la section hero" */
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    background-image: url('assets/noise.png');
    /* Optional noise texture if available, else just gradient */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Unified minimal spacing */
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 9vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 0;
    /* Handled by gap */
    text-transform: none;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    /* Enforce centering */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    /* Gap between "Shamss" span and "Al Fakhama" span */
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    width: 100%;
    /* Animation base */
    animation: goldShimmer 3s infinite alternate;
}

.main-title .gold-text {
    display: inline-block;
    font-weight: 700;
    color: var(--white);
    /* White base color as requested */
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
    font-style: normal;
    animation: goldShimmer 3s infinite alternate 1.5s;
    /* Staggered animation */
}

@keyframes goldShimmer {
    0% {
        color: var(--white);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        color: #E6CFA0;
        /* Soft Gold */
        text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
    }

    100% {
        color: #C5A059;
        /* Deep Gold */
        text-shadow: 0 0 30px rgba(197, 160, 89, 0.8), 0 0 60px rgba(197, 160, 89, 0.4);
    }
}



.hero-event-text {
    font-family: 'Great Vibes', cursive;
    /* Or a similar elegant script font if available, utilizing the backup or a standard one */
    font-family: var(--font-subheading);
    /* Fallback to Playfair Display if Great Vibes isn't loaded, or just use Playfair consistently */
    font-size: 1.8rem;
    /* Petite */
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 0;
    /* Centered */
    letter-spacing: 0.1em;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1rem;
}


@keyframes goldPulse {
    from {
        filter: brightness(1);
    }

    to {
        filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.scroll-down::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Text Reveal Animation */
.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotate(10deg);
    animation: revealLuxury 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: bottom center;
}

@keyframes revealLuxury {
    0% {
        opacity: 0;
        transform: translateY(50px) rotate(10deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
        filter: blur(0);
    }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 950px;
    /* Slightly wider for ornaments */
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

    /* Premium Glass Container */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.2rem 4rem;
    border-radius: 100px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(197, 160, 89, 0.1),
        0 0 15px rgba(197, 160, 89, 0.2);
    /* Outer Holy Glow */

    position: relative;
    display: inline-flex;
    /* Use flex for alignment */
    align-items: center;
    gap: 1.5rem;
    /* Space between text and ornaments */
}

/* Decorative Ornaments */
.ornament {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
    opacity: 0.8;
}

.ornament::before {
    content: '◆';
    color: var(--gold);
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    /* Center on line */
    text-shadow: 0 0 5px var(--gold);
}


/* Cleaned up spacing */

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ================= Luxury Marquee (Creative Band) ================= */
/* ================= Luxury Marquee (Enhanced Creative Band) ================= */
/* ================= Luxury Marquee (Enhanced Creative Band) ================= */
.creative-marquee {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
    /* Rich Metallic Gold */
    border: none;
    /* Removed borders */
    padding: 0.5rem 0;
    /* Reduced padding for smaller band */
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 10;
    transform: none;
    margin: 0;
    /* Removed margin for full width flow */
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.creative-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lightSweep 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 40s linear infinite;
}



.marquee-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    /* Reduced size */
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 1.5rem;
    /* Reduced spacing */
    letter-spacing: 0.1em;
    color: #2a1f0a;
    /* Deep Luxury Brown */
    text-shadow: none;
}

/* Hollow Text Effect for alternate items */
.marquee-item:nth-child(even) {
    color: transparent;
    -webkit-text-stroke: 1px #2a1f0a;
    text-shadow: none;
}

.marquee-item i {
    font-size: 0.8rem;
    margin: 0 1rem;
    vertical-align: middle;
    color: #2a1f0a;
    opacity: 1;
    text-shadow: none;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%) skewX(-30deg);
    }

    100% {
        transform: translateX(200%) skewX(-30deg);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments for Ref Layout */
@media (max-width: 900px) {
    .play-button-overlay {
        left: 50%;
    }

    .image-wrapper-style {
        padding: 0;
    }

    .image-wrapper-style::before {
        display: none;
    }

    .grid-content-ref {
        padding: 2rem 1rem;
    }

    .main-heading-ref {
        font-size: 2.2rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

/* ================= Mobile Marquee Adjustments ================= */
@media (max-width: 768px) {
    .creative-marquee {
        padding: 0.3rem 0;
    }

    .marquee-item {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .marquee-item i {
        font-size: 0.65rem;
    }
}


/* ================= Reference-Matched About Section (Regenerated) ================= */

/* Image Wrapper with Offset Border */
.image-wrapper-style {
    position: relative;
    padding: 0 0 2rem 2rem;
    /* Space for offset border */
}

.image-wrapper-style::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0;
    width: 90%;
    height: 90%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    /* Gold border */
    z-index: 0;
}

.grid-image-ref {
    width: 100%;
    height: 550px;
    /* Taller for luxury feel */
    object-fit: cover;
    position: relative;
    z-index: 1;
    filter: brightness(0.9);
    transition: transform 0.7s ease;
}

.image-wrapper-style:hover .grid-image-ref {
    transform: scale(1.02);
}

/* Centered Play Button */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 55%;
    /* Centered relative to image padding */
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(197, 160, 89, 0.2);
    /* Glassy Gold */
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--gold);
    color: var(--rich-black);
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.6);
}

/* Right Content Styling */
.grid-content-ref {
    padding: 4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-title-gold {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sub-title-gold::after {
    content: '';
    height: 1px;
    width: 50px;
    background: var(--gold);
}

.main-heading-ref {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* About Section Logo */
.about-logo {
    display: block;
    width: 220px;
    /* Increased from 120px */
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.5));
}

.section-text-ref {
    color: #bbb;
    margin-bottom: 4rem;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 90%;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

/* Horizontal Stats Row */
.stats-row {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    /* Solid gold for readability */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* Reference Quote Card */
.quote-card-ref {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem;
    border-radius: 0;
    /* Sharp for luxury */
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.quote-card-ref::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.chef-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    padding: 3px;
    /* Gap between border and image */
}

.quote-content p {
    font-family: var(--font-heading-alt);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.quote-author {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: bold;
}

/* Response adjustments for Marquee */
@media (max-width: 768px) {
    .creative-marquee {
        margin: -1rem 0 2rem 0;
        padding: 1rem 0;
        transform: rotate(-2deg) scale(1.02);
        /* Less tilt on mobile */
    }

    .marquee-item {
        font-size: 1.2rem;
        padding: 0 2rem;
    }
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    /* Reduced from 2rem */
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 4rem;
    letter-spacing: 0.2em;
}

.marquee-item i {
    font-size: 1rem;
    margin: 0 1rem;
    vertical-align: middle;
    color: currentColor;
    opacity: 0.7;
}

/* ================= Common Sections ================= */
.section {
    padding: 6rem 5%;
    /* Increased spacing for luxury feel */
}

.container {
    max-width: 1300px;
    /* Wider container */
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.divider-ornament {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 2rem;
    position: relative;
}

.divider-ornament::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    background: var(--black);
    padding: 0 10px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ccc;
}

/* ================= Footer ================= */
.footer {
    background: #050505;
    /* Deepest black */
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    /* Adjusted column ratios */
    gap: 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-col h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-logo {
    width: 250px;
    /* Increased size */
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
    display: block;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.footer-logo:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.3) drop-shadow(0 10px 25px rgba(197, 160, 89, 0.4));
}

/* Contact Info Styling */
.footer-col p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.footer-col p i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gold);
    /* Gold icon by default */
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    margin-right: 0;
}

.social-links a:hover {
    color: var(--rich-black);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    /* Brighter color */
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .footer-col p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ================= Animations ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

/* ================= Services Highlights (Luxury Update) ================= */
/* ================= Services Highlights (Luxury Update) ================= */
.services-preview {
    position: relative;
    padding: 8rem 0;
    /* More breathing room */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch;
}

/* Service Card - Luxury Glass & Gold */
.service-card {
    background: var(--card-bg);
    /* Theme Variable */
    /* Deeper gradient */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    padding: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0;
    /* Sharp luxury edges */
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197, 160, 89, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-15px);
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.7), rgba(15, 15, 15, 0.9));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.service-card:hover::after {
    opacity: 1;
    /* Fade in gold border on hover */
}

.service-card-image {
    height: 350px;
    /* Taller */
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.8) grayscale(30%);
    /* Luxury muted tone */
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
    filter: brightness(1) grayscale(0%);
    /* Alive on hover */
}

.service-card-content {
    padding: 3rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Gold Diamond Decoration */
.service-card-content::before {
    content: '♦';
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-content::before {
    transform: rotate(45deg) scale(1.2);
    color: var(--white);
    text-shadow: 0 0 10px var(--gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    /* Theme Color */
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 1rem;
}

/* ================= Force Black Backgrounds ================= */
#about,
#services,
#menu,
#gallery,
#testimonials,
#contact {
    background-color: var(--void-black) !important;
    background-image: none !important;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s ease;
}

.service-card:hover h3::after {
    width: 80px;
    /* Expand line on hover */
}

.service-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.8;
    font-family: var(--font-body);
}

/* ================= Testimonial Slider ================= */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    /* overflow: hidden; Removed to allow dots to be seen if outside */
}

.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    min-height: 400px;
    /* Space for the absolute slides */
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px) scale(0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 2;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-text {
    font-family: var(--font-heading-alt);
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.client-info {
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    padding-top: 1rem;
    display: inline-block;
}

.client-name {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.client-role {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
    transform: scale(1.2);
}

/* ================= Contact Section (Gold Form) ================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2,
.contact-form h2 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

/* Info Item */
.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #999;
    font-size: 0.95rem;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 1px solid var(--gold);
    background: linear-gradient(to top, rgba(197, 160, 89, 0.05), transparent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Floating Labels Fix */
.form-group.floating {
    position: relative;
    margin-bottom: 2rem;
}

.form-group.floating input,
.form-group.floating select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 0;
    /* Removing default border radius */
    appearance: none;
    /* Remove default browser styling */
    -webkit-appearance: none;
}

.form-group.floating label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #bbb;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    background-color: transparent;
}

/* Float the label when: focused, has value, or is a date/time input */
.form-group.floating input:focus~label,
.form-group.floating input:not(:placeholder-shown)~label,
.form-group.floating select:focus~label,
.form-group.floating select:valid~label,
.form-group.floating input[type="date"]~label,
.form-group.floating input[type="time"]~label,
.form-group.floating .static-label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.form-group.floating input:focus,
.form-group.floating select:focus {
    border-bottom-color: var(--gold);
    box-shadow: 0 1px 0 0 var(--gold);
    outline: none;
}

/* Specific fix for Date Input to look consistent */
.form-group.floating input[type="date"] {
    color: var(--white);
}

/* Calendar icon color override */
.form-group.floating input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.form-group.floating input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Select Styling & Chevron */
.form-group.floating select {
    cursor: pointer;
}

.form-group.floating select option {
    background: #1a1a1a;
    color: var(--white);
    padding: 10px;
}

/* Custom dropdown arrow */
.form-group.floating::after {
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 10px;
    color: var(--gold);
    pointer-events: none;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Hide arrow for inputs that are NOT select */
.form-group.floating:not(:has(select))::after {
    display: none;
}

/* Fallback if :has isn't supported, explicit class for select wrapper */
.form-group.floating.select-group::after {
    content: '\f078';
    display: block;
}

.reservation-card textarea {
    width: 100%;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border-radius: 4px;
    resize: vertical;
}

.reservation-card textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
    outline: none;
}

/* ================= Page Header ================= */
.page-header {
    height: 60vh;
    /* Taller for more drama */
    background-image: url('https://images.unsplash.com/photo-1549488352-22668e9be843?q=80&w=2576&auto=format&fit=crop');
    /* Placeholder Spices/Food BG */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    max-width: 800px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.header-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.header-content p {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    font-style: italic;
}

/* ================= Menu Page ================= */
.menu-category {
    margin-bottom: 5rem;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.menu-item {
    background: transparent;
    padding: 1.5rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gold);
    margin: 0 15px 6px 15px;
    opacity: 0.4;
    position: relative;
}

.menu-item-title {
    font-family: var(--font-heading-alt);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
}

.menu-item-price {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
}

.menu-item-desc {
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
    text-align: left;
}

/* ================= Services Page ================= */
.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    height: 400px;
    border: 1px solid var(--gold);
    padding: 10px;
    position: relative;
    overflow: hidden;
    /* Ensure zoom stays inside */
    border-radius: 200px 200px 0 0;
    /* Match arch */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth easing */
}

/* Zoom Effect Triggered on Parent Hover or Image Hover */
.service-detail:hover .service-image img {
    transform: scale(1.15);
}


.service-text {
    flex: 1;
    text-align: left;
}

.service-text h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
}

.service-features {
    margin: 1.5rem 0 2rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 1.1rem;
}

.service-features li i {
    color: var(--gold);
}

.prompt-btn {
    display: inline-block;
    margin-top: 1rem;
}

/* ================= Gallery Page ================= */
/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Masonry Grid */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0 50px 0 50px;
    /* Asymmetrical luxury shape */
    overflow: hidden;
    height: auto;
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth zoom */
    filter: brightness(0.9);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Overlay on Hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--gold);
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.8rem 2rem;
}

.gallery-item.hidden {
    display: none;
}

/* Responsive Masonry */
@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}


/* ================= Contact Page ================= */
.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-info h2 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.info-item h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #aaa;
}

.contact-form-container {
    flex: 1.5;
    background: #111;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group.full {
    grid-column: 1 / -1;
}

.social-links.big a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

/* ================= Responsive Rules ================= */

/* Tablet & Smaller (Max 1024px) */
/* Tablet & Smaller (Max 1024px) */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
    }

    /* Stack the broken grid earlier for tablets */
    .broken-grid {
        grid-template-columns: 1fr;
        padding: 4rem 1rem;
        gap: 2rem;
    }

    .grid-content {
        margin-left: 0;
        margin-right: 0;
        padding: 3rem 2rem;
        margin-top: -30px;
        /* Slight overlap */
        order: 2;
        /* Text below image */
        width: 100%;
        max-width: 700px;
        margin-inline: auto;
    }

    .grid-image-container {
        order: 1;
        /* Image on top */
        width: 100%;
    }

    .grid-image {
        width: 100%;
        height: 450px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {

    /* Global Adjustments */
    .section {
        padding: 4rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navbar */
    .nav-links {
        position: fixed;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        visibility: hidden;
        /* Ensure it's hidden */
        transition: transform 0.4s ease-in-out, visibility 0.4s;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        visibility: visible;
        /* Show it */
        clip-path: none;
        /* Override circle animation for safer implementation */
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 1;
        transform: none;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.5rem;
        display: block;
    }

    .nav-links li a.nav-cta {
        display: inline-block;
        margin-top: 1rem;
        width: auto;
        font-size: 1.1rem;
        padding: 1rem 3rem !important;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    /* Hero */
    .hero-content {
        padding: 0 1rem;
    }

    .main-title {
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        letter-spacing: 0.1em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .gold-button,
    .outline-button {
        width: 100%;
        text-align: center;
    }

    /* About Section */
    .broken-grid {
        padding: 2rem 0;
    }

    .grid-content {
        margin: 0 1rem;
        padding: 2rem;
        margin-top: -30px;
    }

    .grid-image {
        height: 300px;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .quote-card-ref {
        flex-direction: column;
        text-align: center;
    }

    .chef-avatar img {
        margin: 0 auto;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-card {
        height: auto;
    }

    .service-card-image {
        height: 250px;
    }

    /* Contact */
    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .grid-content.reverse {
        margin-right: 0;
        margin-left: 0;
        margin-top: -30px;
    }
}

/* ================= Keyframes ================= */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* ================= Creative Layout Utilities ================= */
.broken-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Intentionally zero for overlaps */
    align-items: center;
    position: relative;
    padding: 5rem 0;
    background-color: var(--void-black);
    /* Deep Black Background for Luxury Contrast */
}

.grid-image-container {
    position: relative;
    z-index: 1;
}

.grid-image {
    width: 85%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.7s ease;
}

.broken-grid:hover .grid-image {
    filter: brightness(1);
    transform: scale(1.02);
}

.grid-content {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 4rem;
    margin-left: -100px;
    /* The "Broken" overlap */
    z-index: 2;
    border: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
}

.grid-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: -1;
}

.grid-content.reverse {
    margin-left: 0;
    margin-right: -100px;
    order: -1;
    /* Move text to left, image to right */
}

/* Parallax Element Wrapper */
.parallax-wrapper {
    overflow: hidden;
    position: relative;
}

/* Decorative Lines */
.vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(197, 160, 89, 0.1);
    left: 10%;
    z-index: 0;
}

.vertical-line.right {
    left: auto;
    right: 10%;
}

@media (max-width: 900px) {
    .broken-grid {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .grid-image {
        width: 100%;
        height: 400px;
    }

    .grid-content {
        margin: -50px 20px 0 20px;
        padding: 2rem;
    }

    .grid-content.reverse {
        margin: -50px 20px 0 20px;
        order: 0;
    }
}

/* ================= New Menu Grid Section ================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.menu-card {
    background: rgba(20, 20, 20, 0.6);
    /* Glass Effect Base */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* ================= Services Section ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    /* Darker luxury background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0 50px 0 50px;
    /* Asymmetrical luxury shape */
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

.service-card-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2.5rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #0a0a0a, #000);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Transformation prevents HTML editing */
    position: relative;
    padding-bottom: 0;
}

/* Pseudo-element for Diamond Ornament */
.service-card h3::after {
    content: '♦';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Remove unused divider rule if present or just ensure P is spaced */
.service-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 90%;
    margin-top: 1rem;
}

.menu-card .gold-button.small {
    margin-top: auto;
    /* Push to bottom */
    padding: 1rem 2rem;
    font-size: 0.8rem;
    width: 80%;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

/* Decorative frame border for image (like reference) */
.menu-card-image::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.menu-card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-card h3 {
    font-family: var(--font-heading);
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.menu-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-card .gold-button.small {
    margin-top: auto;
    /* Push to bottom */
    padding: 1rem 2rem;
    font-size: 0.8rem;
    width: 80%;
}

.divider-ornament.small {
    width: 30px;
    margin: 0.5rem auto 1rem;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    height: 1px;
}

/* ================= Quote Section ================= */
.quote-section {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for readability */
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ================= Modal Styles ================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeInModal 0.3s;
}

.modal-content {
    background: rgba(0, 0, 0, 0.85);
    /* Darker for contrast */
    border: 1px solid rgba(197, 160, 89, 0.5);
    width: 90%;
    max-width: 500px;
    /* Compact width */
    padding: 3rem 2.5rem;
    /* More top padding for band */
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(197, 160, 89, 0.15);
    /* Gold Glow */
    position: relative;
    overflow: hidden;
    /* Trim bands */
    animation: slideUpModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animated Decorative Bands */
.modal-band {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), #fff, var(--gold), #fff, var(--gold));
    background-size: 200% 100%;
    animation: bandFlow 4s linear infinite;
    z-index: 10;
}

.modal-band.top {
    top: 0;
}

/* Optional bottom band if added in HTML, or just top is fine. Style supports both */
.modal-band.bottom {
    bottom: 0;
}

@keyframes bandFlow {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeInModal {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideUpModal {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Modal Form Specifics */
.modal-content .form-group.floating input,
.modal-content .form-group.floating select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 0;
    padding: 1rem 0.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.modal-content .form-group.floating input:focus,
.modal-content .form-group.floating select:focus {
    background: rgba(197, 160, 89, 0.05);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 10px 20px -10px rgba(197, 160, 89, 0.3);
    outline: none;
}

/* Ensure placeholder/select arrow color */
.modal-content .form-group.floating select {
    color: var(--white);
}

.modal-content .form-group.floating select option {
    background: #000;
    color: var(--gold);
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.quote-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.4;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .quote-content blockquote {
        font-size: 1.5rem;
    }

    .quote-section {
        background-attachment: scroll;
        /* Fix parallax on mobile */
    }
}

/* ================= Ornamental Divider ================= */
.section-divider-ornamental {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
    /* Subtle dark background */
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    margin-top: -5px;
    /* Merge with previous section if needed */
}

.section-divider-ornamental .line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    width: 200px;
    margin: 0 2rem;
    opacity: 0.8;
}

.section-divider-ornamental .ornament {
    color: var(--gold);
    font-size: 2rem;
    animation: pulseGold 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.4));
}

@keyframes pulseGold {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
        text-shadow: 0 0 20px rgba(197, 160, 89, 0.8);
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}