/* All Star Hibachi Custom Styles */

/* Root Variables */
:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --warning-yellow: #ffc107;
    --dark-bg: #1a1a1a;
    --fire-red: #ff4444;
    --gradient-fire: linear-gradient(45deg, #ff4444, #ff6b35, #ff8c42, #ffc107);
    --shadow-fire: 0 4px 20px rgba(255, 107, 53, 0.3);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 110px; /* Account for top contact bar + fixed navbar */
}

/* Top Contact Bar Styles */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-contact-bar .btn {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-contact-bar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Fire Background Animations */
@keyframes fireGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes fireFlicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    50% {
        opacity: 0.9;
        transform: scale(0.95);
    }
    75% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.9)) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--warning-yellow);
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--warning-yellow) !important;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--warning-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/static/images/hero-main-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Fallback for video not available */
.hero-section:not(:has(.hero-video)) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/static/images/hero-main-background.png');
}

/* Hero Logo Styles */
.hero-logo {
    height: 750px;
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 40px rgba(255, 255, 255, 0.6));
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 8px 32px rgba(255, 255, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 12px 40px rgba(255, 255, 255, 0.7));
    }
}

/* New Row-based Layout */
.logo-row {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem !important;
}

.title-row {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem !important;
}

.title-row .hero-title {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    font-weight: 900;
    line-height: 1.1;
}

.taglines-row {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem !important;
}

.tagline-primary {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

.tagline-secondary {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

.description-row {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem !important;
}

.description-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Logo Styles */
.page-logo {
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.page-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.3));
}

/* Hero section spacing optimization */
.hero-section h1 {
    margin-top: 1rem;
}

/* Page hero sections spacing */
.about-hero-section h1,
.contact-hero-section h1,
.services-hero-section h1,
.booking-hero-section h1,
.videos-hero-section h1 {
    margin-top: 1.5rem;
}

/* Menu page specific spacing */
.menu-hero h1 {
    margin-top: 1rem;
}

/* Navbar Logo */
.navbar-brand img {
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

/* Responsive Logo */
@media (max-width: 768px) {
    .hero-logo {
        height: 540px;
        max-width: 85%;
    }
    
    .title-row .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .tagline-primary {
        font-size: 1.75rem !important;
    }
    
    .tagline-secondary {
        font-size: 1.5rem !important;
    }
    
    .description-text {
        font-size: 1.1rem !important;
    }
    
    .page-logo {
        height: 140px !important;
    }
    
    .navbar-brand img {
        height: 70px !important;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        height: 450px;
        max-width: 80%;
    }
    
    .title-row .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .tagline-primary {
        font-size: 1.5rem !important;
    }
    
    .tagline-secondary {
        font-size: 1.25rem !important;
    }
    
    .description-text {
        font-size: 1rem !important;
    }
    
    .page-logo {
        height: 120px !important;
    }
    
    .navbar-brand img {
        height: 60px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-logo {
        height: 360px;
        max-width: 75%;
    }
    
    .title-row .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .tagline-primary {
        font-size: 1.25rem !important;
    }
    
    .tagline-secondary {
        font-size: 1.1rem !important;
    }
    
    .description-text {
        font-size: 0.95rem !important;
    }
    
    .page-logo {
        height: 100px !important;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
}

.services-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/services-hero-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.about-hero-section,
.videos-hero-section,
.booking-hero-section,
.contact-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/static/images/photo_1757381800811.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 40vh;
}

.hero-section::before,
.about-hero-section::before,
.services-hero-section::before,
.videos-hero-section::before,
.booking-hero-section::before,
.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section > .container,
.about-hero-section > .container,
.services-hero-section > .container,
.videos-hero-section > .container,
.booking-hero-section > .container,
.contact-hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-title {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    font-weight: 900;
}

/* Hero text styling for better readability */
.hero-section h1,
.hero-section p,
.about-hero-section h1,
.about-hero-section p,
.services-hero-section h1,
.services-hero-section p,
.videos-hero-section h1,
.videos-hero-section p,
.booking-hero-section h1,
.booking-hero-section p,
.contact-hero-section h1,
.contact-hero-section p {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Cards and Components */
.service-area-card,
.feature-card,
.event-type-card,
.value-card,
.story-card,
.team-member-card,
.package-card,
.instagram-video-card,
.customer-video-card,
.competition-video-card,
.contact-card,
.process-step {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Hibachi War Section Specific Styles */
.hibachi-war {
    position: relative;
    z-index: 2;
    clear: both;
}

.hibachi-war .container {
    position: relative;
    z-index: 3;
}

.hibachi-action-images img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Team Members Section */
.team-members {
    position: relative;
    z-index: 1;
    clear: both;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.team-member-card {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    padding: 2rem;
    overflow: hidden;
}

/* Section Spacing and Layout */
section {
    position: relative;
    z-index: 1;
}

.team-intro {
    position: relative;
    z-index: 2;
    clear: both;
}

.team-values {
    position: relative;
    z-index: 2;
    clear: both;
}

.cta-section {
    position: relative;
    z-index: 2;
    clear: both;
}

/* Fix any potential floating issues */
.container::after {
    content: "";
    display: table;
    clear: both;
}

.service-area-card:hover,
.feature-card:hover,
.event-type-card:hover,
.value-card:hover,
.story-card:hover,
.package-card:hover,
.instagram-video-card:hover,
.customer-video-card:hover,
.competition-video-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-fire);
    border-color: var(--warning-yellow);
}

.service-area-card.featured,
.package-card.featured {
    border: 3px solid var(--warning-yellow);
    box-shadow: var(--shadow-fire);
    position: relative;
}

.service-area-card.coming-soon,
.package-card.coming-soon {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #adb5bd;
}

/* Service Area Cards with Images */
.service-area-card .area-image {
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-area-card .area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-area-card:hover .area-image img {
    transform: scale(1.05);
}

/* Clickable Card Styles */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
    border-color: var(--warning-yellow);
}

.clickable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.clickable-card:hover::before {
    opacity: 1;
}

.clickable-card > * {
    position: relative;
    z-index: 2;
}

.booking-hint {
    transition: all 0.3s ease;
    opacity: 0.7;
    font-size: 0.85rem;
}

.clickable-card:hover .booking-hint {
    opacity: 1;
    color: var(--warning-yellow) !important;
    transform: translateY(-2px);
}

.coming-soon-hint {
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Enhanced Card Animations */
.service-area-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-area-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Card Image Enhancements */
.service-area-card .area-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-area-card .area-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-area-card:hover .area-image::after {
    opacity: 1;
}

/* Icon Enhancements */
.service-area-card i {
    transition: all 0.3s ease;
}

.service-area-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
}

/* Text Enhancements */
.service-area-card h4 {
    transition: all 0.3s ease;
}

.service-area-card:hover h4 {
    color: var(--primary-orange) !important;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.service-area-card p {
    transition: all 0.3s ease;
}

.service-area-card:hover p {
    color: #555 !important;
}

/* Main Service Area Highlighting - Removed special styling */
.service-area-card.main-area {
    /* Removed special styling - now same as regular cards */
}

/* Team Member Cards */
.chef-image-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    padding: 20px;
    display: inline-block;
}

.chef-avatar {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.chef-avatar:hover {
    transform: scale(1.05);
}

.chef-rank-badge {
    font-size: 0.75rem;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
    border: 2px solid white;
    z-index: 10;
    position: absolute;
}

.achievements ul li {
    padding: 5px 0;
}

.review-snippet {
    border-left: 4px solid var(--warning-yellow);
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-yellow);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

/* Package Cards */
.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fire-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 68, 68, 0.3);
}

/* Video Containers */
.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-info {
    background: #f8f9fa;
}

/* Buttons */
.btn-warning {
    background: var(--warning-yellow);
    border-color: var(--warning-yellow);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline-warning:hover {
    background: var(--warning-yellow);
    border-color: var(--warning-yellow);
    color: #000;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--dark-bg), #000);
    color: #fff;
}

.social-links a {
    color: var(--warning-yellow);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-orange);
    transform: scale(1.1);
}

/* Footer text overrides for better readability */
.footer-section .text-muted {
    color: #bbb !important;
}

.footer-section a {
    color: var(--warning-yellow);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--secondary-orange);
    text-decoration: underline;
}

.footer-section .list-unstyled li {
    color: #fff;
}

.footer-section h5 {
    color: #fff;
}

/* Prevent text overlapping and ensure proper rendering */
.footer-section {
    position: relative;
    z-index: 1;
}

.footer-section * {
    position: relative;
    z-index: 2;
}

/* Ensure proper text rendering */
.footer-section p,
.footer-section li,
.footer-section h5 {
    line-height: 1.5;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
}

/* Menu Page Styles */
.menu-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.pricing-badge {
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.menu-category-card {
    background: white;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.menu-item {
    transition: background-color 0.2s ease;
    border-radius: 5px;
    margin: 2px 0;
}

.menu-item:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

.menu-item .item-name {
    color: #333;
    font-size: 15px;
}

.menu-item .item-price {
    font-size: 16px;
    min-width: 60px;
}

.travel-fees-card {
    background: white;
    border: none;
}

.travel-tier {
    transition: background-color 0.2s ease;
    border-radius: 5px;
    margin: 2px 0;
}

.travel-tier:hover {
    background-color: rgba(40, 167, 69, 0.05);
}

/* Menu CTA Section */
.menu-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
}

.menu-cta .btn-warning {
    background: var(--warning-yellow);
    border-color: var(--warning-yellow);
    color: #000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.menu-cta .btn-outline-primary {
    border-color: white;
    color: white;
    font-weight: 600;
}

.menu-cta .btn-outline-primary:hover {
    background: white;
    color: var(--primary-orange);
}

/* Forms */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--warning-yellow);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

/* Background Sections */
.service-areas-section,
.why-choose-us,
.team-intro,
.service-process,
.event-types,
.whats-included,
.quick-info,
.service-areas,
.booking-process,
.pricing-info,
.alternative-contact,
.contact-info,
.social-media,
.faq {
    background: #f8f9fa;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/static/images/hibachi-Chef-in-Lubbeck-EDA42C1_1757381800811.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

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

.bg-warning {
    background-color: var(--warning-yellow) !important;
}

/* Responsive Hero Section Adjustments */
@media (max-width: 768px) {
    .hero-section,
    .about-hero-section,
    .videos-hero-section,
    .booking-hero-section,
    .contact-hero-section {
        min-height: 40vh;
    }
    
    .hero-video {
        object-position: center center;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .about-hero-section,
    .videos-hero-section,
    .booking-hero-section,
    .contact-hero-section {
        min-height: 35vh;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 2.2rem !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 90px; /* Adjust for smaller navbar on mobile */
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* Accordion Customization */
.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--warning-yellow);
    color: #000;
}

.accordion-button:focus {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

/* Food Showcase Images */
.food-image-card {
    transition: transform 0.3s ease;
}

.food-image-card:hover {
    transform: translateY(-5px);
}

.food-image-card img {
    transition: transform 0.3s ease;
    height: 250px;
    object-fit: cover;
}

.food-image-card:hover img {
    transform: scale(1.02);
}

.food-caption {
    padding: 0 10px;
}

.process-image img {
    border: 3px solid var(--warning-yellow);
    transition: all 0.3s ease;
}

.process-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.hibachi-action-images img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hibachi-action-images img:hover {
    transform: scale(1.02);
}

/* Additional Fire Effects */
.fire-effect {
    animation: fireFlicker 4s ease-in-out infinite;
}

.glow-effect {
    animation: fireGlow 3s ease-in-out infinite;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Print Styles */
@media print {
    .navbar,
    .footer-section,
    .cta-section {
        display: none;
    }
    
    .hero-section {
        background: #fff !important;
        color: #000 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --warning-yellow: #000;
        --primary-orange: #000;
        --secondary-orange: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ensure button text is visible in social links */
.social-links .btn {
    color: inherit !important;
}

.social-links .btn-warning {
    color: #000 !important;
}

.social-links .btn-warning:hover {
    color: #fff !important;
}

/* Menu Page Specific Styles */
.menu-cards .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.menu-cards .col-lg-4,
.menu-cards .col-md-6,
.menu-cards .col-12 {
    display: flex;
    flex-direction: column;
}

.menu-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.menu-category-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.menu-item {
    transition: background-color 0.2s ease;
    border-radius: 8px;
    margin: 0.25rem 0;
    padding: 0.75rem 0.5rem !important;
}

.menu-item:hover {
    background-color: rgba(255, 107, 53, 0.05);
}

.item-name {
    color: #2c3e50;
    font-size: 1rem;
}

.item-price {
    font-size: 1.1rem;
    min-width: 60px;
}

.pricing-badge {
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.pricing-badge:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for menu cards */
@media (max-width: 768px) {
    .menu-cards .col-lg-4,
    .menu-cards .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .menu-category-card {
        min-height: auto;
    }
}

@media (min-width: 1200px) {
    .menu-cards .col-lg-5 {
        max-width: 45%;
    }
}

/* ============================================
   City Selector Styles (Booking Page)
   ============================================ */

.city-selector {
    margin-bottom: 2rem;
}

.city-btn {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #ffc107;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: white;
    color: #333;
    position: relative;
    overflow: hidden;
}

.city-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.city-btn:hover:before {
    width: 300px;
    height: 300px;
}

.city-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.city-btn.btn-warning,
.city-btn.active {
    background-color: #ffc107;
    color: #1a1a1a;
    border-color: #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.city-btn.btn-outline-warning {
    background-color: white;
    color: #ffc107;
    border-color: #ffc107;
}

.city-btn.btn-outline-warning:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Acuity iframe transitions */
#acuity-calendar {
    transition: opacity 0.3s ease;
}

#acuity-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

/* Responsive city selector */
@media (max-width: 768px) {
    .city-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .btn-group {
        gap: 8px !important;
    }
}
