/* ----------------------------------------------------
 * Aura Fine Dining Custom Premium CSS Stylesheet
 * ---------------------------------------------------- */

:root {
    --color-dark-bg: #faf8f5;        /* Warm off-white / light cream background */
    --color-dark-card: #ffffff;      /* Pure white for cards and details */
    --color-gold: #fdbb30;           /* Brand yolk yellow */
    --color-gold-hover: #e59900;     /* Darker gold for contrast on hover */
    --color-gold-dim: rgba(253, 187, 48, 0.08);
    --color-gold-dim-hover: rgba(253, 187, 48, 0.18);
    --color-red: #de0f17;            /* Brand red from logo */
    --color-red-hover: #b80d12;
    --color-cream: #1c1a17;          /* Primary dark charcoal text */
    --color-cream-dim: #5c5854;      /* Secondary dimmed gray-brown text */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Global Reset & Base Styles */
body {
    background-color: var(--color-dark-bg) !important;
    color: var(--color-cream) !important;
    font-family: var(--font-sans);
    font-size: 1.025rem;
    line-height: 1.75;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

h1, h2, .text-serif {
    font-family: var(--font-serif);
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3, h4, h5, h6, .text-sans-serif-header {
    font-family: var(--font-sans);
    color: var(--color-cream);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.text-sans {
    font-family: var(--font-sans);
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.text-cream-dim {
    color: var(--color-cream-dim) !important;
}

.bg-dark-custom {
    background-color: var(--color-dark-bg) !important;
}

.bg-card-custom {
    background-color: var(--color-dark-card) !important;
}

.border-gold-dim {
    border-color: rgba(197, 160, 89, 0.25) !important;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

.tracking-wider {
    letter-spacing: 0.08em;
}

.text-sm {
    font-size: 0.875rem !important;
}

.text-xs {
    font-size: 0.75rem !important;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* Navbar Custom Behavior */
.custom-navbar {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(250, 246, 240, 0.05);
    z-index: 1050;
    transition: all 0.4s ease-in-out;
}

/* Scrolled state of Navbar */
.custom-navbar.scrolled {
    background-color: rgba(11, 12, 14, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.custom-navbar .navbar-nav .nav-link {
    color: var(--color-cream);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.6rem !important;
    position: relative;
    transition: color 0.3s ease;
}

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

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.6rem;
    right: 0.6rem;
    height: 1px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Nav Menu Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--color-dark-card);
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 1rem;
        border: 1px solid rgba(197, 160, 89, 0.15);
    }
    
    .custom-navbar {
        background-color: rgba(11, 12, 14, 0.98);
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

/* Premium Buttons */
.btn-gold {
    background-color: var(--color-red);
    color: #ffffff !important;
    border: 1px solid var(--color-red);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(222, 15, 23, 0.15);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-gold:hover {
    background-color: var(--color-red-hover);
    color: #ffffff !important;
    border-color: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(222, 15, 23, 0.25);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-cream) !important; /* dark charcoal */
    border: 2px solid var(--color-gold); /* brand yolk yellow */
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-cream) !important; /* dark text on yolk background */
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 187, 48, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 12, 14, 0.7) 0%,
        rgba(11, 12, 14, 0.85) 60%,
        var(--color-dark-bg) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.hero-eyebrow::before {
    content: '❖';
    color: var(--color-red);
    margin-right: 12px;
    font-size: 0.95rem;
    vertical-align: middle;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-cream-dim);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Indicator Mouse */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.mouse-icon {
    width: 26px;
    height: 44px;
    border: 2px solid var(--color-gold);
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.6s infinite ease-out;
}

@keyframes scroll-wheel-anim {
    0% { opacity: 0; top: 8px; }
    30% { opacity: 1; }
    100% { opacity: 0; top: 22px; }
}

/* Section Styling */
.section-padding {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--color-red) !important;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.section-subtitle::before {
    content: '\2756';
    color: var(--color-gold);
    margin-right: 10px;
    font-size: 0.85rem;
    vertical-align: middle;
}

/* Image Frames (About Us) */
.image-reveal-container {
    position: relative;
    padding: 0 1.5rem 1.5rem 0;
}

.image-reveal-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border: 2px solid var(--color-gold);
    z-index: 1;
    pointer-events: none;
}

.about-img {
    position: relative;
    z-index: 2;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: translate(-5px, -5px);
}

/* Custom Cards for Featured Dishes */
.dish-card {
    background-color: var(--color-dark-card);
    border: 1px solid rgba(222, 15, 23, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.dish-card-img-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.dish-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dish-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-card-tag {
    font-size: 0.75rem;
    color: var(--color-red); /* Brand red for tags */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dish-card-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.dish-card-desc {
    font-size: 0.925rem;
    color: var(--color-cream-dim);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dish-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(222, 15, 23, 0.08);
    padding-top: 1.25rem;
}

.dish-price {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-red);
}

.dish-cta {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.dish-cta i {
    font-size: 0.8rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

/* Hover effects for Dish Cards */
.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(222, 15, 23, 0.08);
    border-color: rgba(222, 15, 23, 0.18);
}

.dish-card:hover .dish-card-img {
    transform: scale(1.06);
}

.dish-card:hover .dish-cta {
    color: var(--color-red);
}

.dish-card:hover .dish-cta i {
    transform: translateX(4px);
}

/* Today's Specials Layout */
.special-item {
    background-color: var(--color-dark-card);
    border: 1px solid rgba(222, 15, 23, 0.08);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.special-item:hover {
    border-color: rgba(222, 15, 23, 0.18);
    box-shadow: 0 12px 30px rgba(222, 15, 23, 0.08);
    transform: translateY(-4px);
}

/* Why Choose Us Feature Blocks */
.feature-block {
    padding: 2.25rem;
    background-color: var(--color-dark-card);
    border: 1px solid rgba(222, 15, 23, 0.06);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: rgba(222, 15, 23, 0.15);
    box-shadow: 0 12px 30px rgba(222, 15, 23, 0.06);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--color-gold-dim);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-block:hover .feature-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-cream) !important;
    border-color: var(--color-gold);
}

.feature-block:hover .feature-icon-wrapper i {
    color: var(--color-cream) !important;
    transform: scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--color-gold);
    transition: all 0.4s ease;
}

/* Full Width Experience Banner */
.experience-banner {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 12, 14, 0.6);
    z-index: 1;
}

.experience-content {
    position: relative;
    z-index: 2;
}

/* Carousel Testimonials */
.testimonials-wrapper {
    background-color: var(--color-dark-card);
    border: 1px solid rgba(222, 15, 23, 0.08);
    border-radius: 16px;
    padding: 4rem 2.5rem;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-gold-dim);
    line-height: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-gold-dim);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-gold);
    font-family: var(--font-sans);
}

.carousel-indicators [data-bs-target] {
    background-color: var(--color-gold);
}

/* Footer elements */
.footer-links li a {
    color: var(--color-cream-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream-dim);
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-bg) !important;
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.underline-hover {
    text-decoration: none;
    transition: color 0.3s ease;
}

.underline-hover:hover {
    text-decoration: underline;
    color: var(--color-gold) !important;
}

/* Animations / Scroll Reveal System */
.reveal-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active State for reveals */
.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}

/* Stagger delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Hero Entrance Animation on Load */
.hero-load-anim .hero-eyebrow {
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.hero-load-anim .hero-title {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 0.4s;
    opacity: 0;
}

.hero-load-anim .hero-desc {
    animation: fadeInUp 1s ease forwards 0.6s;
    opacity: 0;
}

.hero-load-anim .hero-btn-container {
    animation: fadeInUp 1s ease forwards 0.8s;
    opacity: 0;
}

.hero-load-anim .scroll-indicator {
    animation: fadeIn 1.2s ease forwards 1.2s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom Accordion for FAQs */
.accordion-item {
    border-color: rgba(197, 160, 89, 0.25) !important;
}

.accordion-button {
    color: var(--color-cream) !important;
    background-color: transparent !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--color-red) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(0.8) sepia(0.6) saturate(3) hue-rotate(10deg);
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: scroll !important;
        scroll-behavior: auto !important;
        transition-delay: 0s !important;
        transition-duration: 0s !important;
    }
    
    .reveal-slide-up,
    .reveal-slide-left,
    .reveal-slide-right,
    .reveal-fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .dish-card:hover {
        transform: none !important;
    }
    
    .dish-card-img {
        transition: none !important;
    }
    
    .dish-card:hover .dish-card-img {
        transform: none !important;
    }
}

/* Custom Light Theme Adjustments & Overrides */

/* Scrollbar adjustment */
::-webkit-scrollbar-thumb {
    background: var(--color-red) !important;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-red-hover) !important;
}

/* Button overrides for premium look */
.btn-outline-gold:hover {
    background-color: var(--color-red) !important;
    color: #ffffff !important;
    border-color: var(--color-red) !important;
}

/* Before Scroll Navbar: text is light (white) over dark hero section */
.custom-navbar:not(.scrolled) .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}
.custom-navbar:not(.scrolled) .navbar-nav .nav-link:hover,
.custom-navbar:not(.scrolled) .navbar-nav .nav-link.active {
    color: var(--color-gold) !important;
}

/* After Scroll Navbar: text becomes dark charcoal */
.custom-navbar.scrolled {
    background-color: rgba(250, 248, 245, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(222, 15, 23, 0.15) !important;
}
.custom-navbar.scrolled .navbar-nav .nav-link {
    color: var(--color-cream) !important;
}
.custom-navbar.scrolled .navbar-nav .nav-link:hover,
.custom-navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--color-red) !important;
}

/* Mobile Navbar collapsed menu style */
@media (max-width: 991.98px) {
    .custom-navbar {
        background-color: #faf8f5 !important;
    }
    .custom-navbar .navbar-toggler-icon {
        filter: invert(1) !important; /* Make toggler dark */
    }
    .navbar-collapse {
        background-color: var(--color-dark-card) !important;
        border: 1px solid rgba(222, 15, 23, 0.15) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }
    .navbar-collapse .navbar-nav .nav-link {
        color: var(--color-cream) !important;
    }
    .navbar-collapse .navbar-nav .nav-link:hover,
    .navbar-collapse .navbar-nav .nav-link.active {
        color: var(--color-red) !important;
    }
}

/* Hero Section Description needs to remain white */
.hero-desc {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Heading Overrides: convert bootstrap text-white on light sections to dark charcoal */
.text-white {
    color: var(--color-cream) !important;
}

/* Card shadows and hover borders for premium light aesthetic */
.dish-card, .special-item, .feature-block, .testimonials-wrapper {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(222, 15, 23, 0.08) !important;
}
.dish-card:hover, .special-item:hover, .feature-block:hover {
    border-color: rgba(222, 15, 23, 0.25) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

/* Form Controls & Select Option boxes inside the Light Card */
.form-control, .form-select {
    color: var(--color-cream) !important;
    background-color: var(--color-dark-card) !important;
}
.form-control::placeholder {
    color: var(--color-cream-dim) !important;
    opacity: 0.6;
}
.form-select option {
    background-color: #ffffff !important;
    color: var(--color-cream) !important;
}

/* Custom Top Info Bar Styles */
.top-bar {
    background-color: var(--color-cream); /* dark charcoal */
    color: #ffffff;
    font-family: var(--font-sans);
    height: 40px;
    position: absolute; /* changed to absolute so it scrolls out of view naturally */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    border-bottom: 1px solid rgba(253, 187, 48, 0.2);
}

.top-bar-item {
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
}

.top-bar-item i {
    color: var(--color-gold);
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.top-bar-link i {
    color: var(--color-gold);
}

.top-bar-link:hover {
    color: var(--color-gold);
}

.top-bar .social-link {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.top-bar .social-link:hover {
    color: var(--color-gold);
    transform: translateY(-1px);
}

/* Navbar positioning & offsets logic for mobile and desktop */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.custom-navbar.scrolled {
    position: fixed;
    top: 0 !important;
    background-color: rgba(250, 248, 245, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(222, 15, 23, 0.15) !important;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

@media (min-width: 992px) {
    .custom-navbar {
        position: absolute; /* absolute on desktop so it sits under the absolute top-bar */
        top: 40px !important;
    }
    
    .custom-navbar.scrolled {
        position: fixed; /* turns fixed when scrolled */
        top: 0 !important;
    }
}

/* Specials Page Cards & Image Effects */
.specials-card-header {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.specials-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dish-card:hover .specials-card-header img {
    transform: scale(1.08);
}

.specials-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 26, 23, 0.85) 0%, rgba(28, 26, 23, 0.3) 60%, rgba(28, 26, 23, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.specials-day-title {
    color: #ffffff !important;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.specials-items-list li {
    position: relative;
    padding-left: 1.25rem;
}

.specials-items-list li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

/* Ensure description text inside dark background sections remains light and readable */
.hero-section,
.experience-banner,
.dark-section {
    color: rgba(255, 255, 255, 0.75) !important;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.experience-banner h1,
.experience-banner h2,
.experience-banner h3,
.experience-banner h4,
.experience-banner h5,
.experience-banner h6,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
    color: #ffffff !important;
}

.hero-section .text-cream-dim,
.hero-section .hero-desc,
.hero-section .text-white,
.experience-banner .text-cream-dim,
.experience-banner p,
.experience-banner .text-white-50,
.experience-banner .text-white,
.dark-section .text-cream-dim,
.dark-section p,
.dark-section .text-white,
.site-footer .text-white,
.sub-footer .text-white {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Spacing and readability improvements for paragraphs on dark/hero banners */
.hero-section p,
.experience-banner p,
.dark-section p,
.hero-section .hero-desc {
    letter-spacing: 0.03em !important;
    word-spacing: 0.08em !important;
    line-height: 1.85 !important;
}

/* Outline button overrides inside dark background sections */
.experience-banner .btn-outline-gold,
.dark-section .btn-outline-gold {
    color: #ffffff !important;
    border-color: rgba(253, 187, 48, 0.6) !important;
}

.experience-banner .btn-outline-gold:hover,
.dark-section .btn-outline-gold:hover {
    background-color: var(--color-gold) !important;
    color: var(--color-cream) !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 8px 20px rgba(253, 187, 48, 0.2) !important;
}

/* Premium Footer Styling */
.site-footer {
    background-color: #161412 !important;
    border-top: 3px solid var(--color-gold);
    color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer h5 {
    color: var(--color-gold) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-link-list li {
    margin-bottom: 0.65rem;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-link-list a:hover {
    color: var(--color-gold) !important;
    transform: translateX(4px);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(253, 187, 48, 0.2);
    margin-right: 0.5rem;
    text-decoration: none;
}

.footer-social-btn:hover {
    background-color: var(--color-gold) !important;
    color: var(--color-cream) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(253, 187, 48, 0.3);
    border-color: var(--color-gold) !important;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.footer-contact-info i {
    color: var(--color-gold);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--color-gold) !important;
}

.sub-footer {
    background-color: #0e0d0c !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.45) !important;
}

.sub-footer a {
    color: rgba(255, 255, 255, 0.45) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-footer a:hover {
    color: var(--color-gold) !important;
}



