/* ===== VARIABLES & RESET ===== */
:root {
    --primary-red: #e41937;
    --primary-yellow: #ffc72c;
    --dark-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--dark-gray); }

/* ===== ADVANCED RESPONSIVE NAVIGATION ===== */

/* NEW HEADER - Enhanced Version */
.new-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227, 24, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(227, 24, 55, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* Logo Styling */
.floating-logo {
    position: fixed;
    top: 10px;
    left: 30px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.floating-logo-image {
    height: 160px;
    width: auto;
    max-width: 350px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-logo:hover .floating-logo-image {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
}

/* MAIN NAVIGATION - Desktop */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 800;
    font-size: 15px;
    font-family: 'Fredoka One', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    transition: width 0.3s ease;
}

/* .nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} */

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    transition: width 0.3s ease;
}


/* .nav-link:hover {
    color: transparent;
} */

.nav-link:hover::before {
    width: 100%;
    opacity: 1;
    transform: translateY(0);
}

.nav-link:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.nav-link.active {
    color: var(--primary-red);
    transform: scale(1.05);
}

.nav-link.active::before {
    width: 100%;
    background: var(--primary-red);
}

/* Navigation Dropdowns */
.nav-item.has-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 15px 0;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    border-top-left-radius: 4px;
}

.nav-item.has-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover {
    background: rgba(227, 24, 55, 0.05);
    color: var(--primary-red);
    padding-left: 30px;
}

.dropdown-item::before {
    content: '→';
    position: absolute;
    left: -20px;
    transition: left 0.3s ease;
    color: var(--primary-red);
}

.dropdown-item:hover::before {
    left: 15px;
}

/* ENQUIRY BUTTON - Enhanced */
.header-enquiry {
    position: relative;
}

.enquiry-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b3122a 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.enquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.enquiry-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(227, 24, 55, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.enquiry-btn:hover::before {
    left: 100%;
}

.enquiry-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.enquiry-ping {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-yellow);
    transform: translateY(-50%);
    animation: enquiryPulse 1.6s infinite;
}

@keyframes enquiryPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 199, 44, 0.8); }
    70% { box-shadow: 0 0 0 12px rgba(255, 199, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 199, 44, 0); }
}

/* MOBILE TOGGLE - Advanced */
.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b3122a 100%);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Fix for iOS/mobile toggle button display - ADD THIS LINE */
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 35px rgba(227, 24, 55, 0.4);
}

.mobile-toggle::before,
.mobile-toggle::after {
    content: '';
    position: absolute;
    left: 16px;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle::before {
    top: 20px;
    transform-origin: center;
}

.mobile-toggle::after {
    top: 28px;
    transform-origin: center;
}

.mobile-toggle span {
    position: absolute;
    top: 36px;
    left: 16px;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle.active {
    transform: rotate(180deg);
}

.mobile-toggle.active::before {
    transform: rotate(45deg) translate(5px, 5px);
    width: 30px;
    left: 13px;
    top: 24px;
}

.mobile-toggle.active::after {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 30px;
    left: 13px;
    top: 24px;
}

.mobile-toggle.active span {
    opacity: 0;
    transform: scale(0);
}

/* Video display control */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
    }
}

/* MOBILE NAVIGATION - Advanced */
@media (max-width: 768px) {

    /* Fix mobile navigation text color - ADD THESE LINES */
    .main-navigation.active .nav-link {
        color: var(--dark-gray) !important;
        -webkit-text-fill-color: var(--dark-gray) !important;
        background: none !important;
    }
    
    .main-navigation.active .nav-link::after {
        display: none !important; /* Hide the gradient overlay */
    }
    
    .main-navigation.active .nav-link:hover {
        color: var(--primary-red) !important;
        -webkit-text-fill-color: var(--primary-red) !important;
    }
    
    .main-navigation.active .nav-link.active {
        color: var(--primary-red) !important;
        -webkit-text-fill-color: var(--primary-red) !important;
    }
    .header-container {
        height: 70px;
        padding: 0 20px 0 120px;
    }
    
    .floating-logo {
        top: 5px;
        left: 15px;
    }
    
    .floating-logo-image {
        height: 140px;
        max-width: 280px;
    }
    
    /* Hide desktop navigation */
    .main-navigation {
        display: none;
    }
    
    /* Show mobile toggle */
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }
    
    /* Enquiry button smaller on mobile */
    .enquiry-btn {
        padding: 12px 16px;
        padding-left: 32px;
        font-size: 0.9rem;
    }
    
    .enquiry-text {
        display: none;
    }
    
    /* Mobile Navigation Menu */
    .main-navigation.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 30px 30px;
        z-index: 999;
        animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        animation: navItemFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    /* Staggered animation for nav items */
    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .nav-item:nth-child(7) { animation-delay: 0.4s; }
    .nav-item:nth-child(8) { animation-delay: 0.45s; }
    
    @keyframes navItemFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(227, 24, 55, 0.1);
        position: relative;
        overflow: visible;
    }
    
    .nav-link::before,
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        color: var(--primary-red);
        transform: none;
    }
    
    .nav-link.active::before {
        display: block;
        content: '▶';
        position: absolute;
        left: -10px;
        color: var(--primary-red);
        animation: bounceRight 1s infinite;
    }
    
    @keyframes bounceRight {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }
    
    /* Mobile dropdown */
    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 20px;
        animation: none;
    }
    
    .dropdown-content::before {
        display: none;
    }
    
    .dropdown-item {
        padding: 15px 0;
        font-size: 16px;
        color: #666;
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: var(--primary-red);
        padding-left: 30px;
    }
    
    /* Mobile toggle position */
    .mobile-toggle {
        position: relative;
        transform: none;
    }
    
    .mobile-toggle:hover {
        transform: scale(1.1) rotate(90deg);
    }
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 0 30px 0 140px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px 0 100px;
        height: 65px;
    }
    
    .floating-logo-image {
        height: 120px;
        max-width: 220px;
    }
    
    .mobile-toggle {
        width: 48px;
        height: 48px;
    }
    
    .mobile-toggle::before,
    .mobile-toggle::after,
    .mobile-toggle span {
        left: 12px;
        width: 24px;
    }
    
    .mobile-toggle::before {
        top: 18px;
    }
    
    .mobile-toggle::after {
        top: 24px;
    }
    
    .mobile-toggle span {
        top: 30px;
    }
    
    .enquiry-btn {
        padding: 10px 14px;
        padding-left: 30px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .new-header {
        background-color: rgba(26, 26, 26, 0.95);
        border-bottom-color: rgba(227, 24, 55, 0.2);
    }
    
    .new-header.scrolled {
        background-color: rgba(26, 26, 26, 0.98);
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dropdown-content {
        background: #2a2a2a;
    }
    
    .dropdown-content::before {
        background: #2a2a2a;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .dropdown-item:hover {
        background: rgba(227, 24, 55, 0.1);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1572802419224-296b0aeee0d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== FEATURE GRID ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .feature-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        margin: 30px -16px;
        padding: 10px 16px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-red) transparent;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .feature-grid::-webkit-scrollbar {
        height: 4px;
    }
    
    .feature-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }
    
    .feature-grid::-webkit-scrollbar-thumb {
        background: var(--primary-red);
        border-radius: 10px;
    }
    
    .feature-card {
        flex: 0 0 auto;
        width: 85vw;
        max-width: 300px;
        scroll-snap-align: start;
        margin-bottom: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 20px;
    }
    
    /* Hide scrollbar on small touch devices */
    @media (max-width: 480px) {
        .feature-grid {
            scrollbar-width: none;
        }
        
        .feature-grid::-webkit-scrollbar {
            display: none;
        }
    }
}
/* Optional: Add navigation indicators for mobile */
@media (max-width: 768px) {
    .feature-grid-wrapper {
        position: relative;
    }
    
    .feature-grid-scroll-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        color: var(--primary-red);
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .feature-grid-scroll-hint::before {
        content: '←';
        font-weight: bold;
    }
    
    .feature-grid-scroll-hint::after {
        content: '→';
        font-weight: bold;
    }
}
/* Feature Card Styles */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-content h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===== MENU PAGE STYLES ===== */
.menu-section {
    padding: 60px 0;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.menu-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
}

.item-image {
    height: 200px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center;
}

.item-content {
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ===== CATERING PAGE STYLES ===== */
.catering-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1555244162-803834f70033?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.package-card:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.package-card:hover h3,
.package-card:hover .price {
    color: var(--white);
}

/* ===== SHOP PAGE STYLES ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    background-color: var(--light-gray);
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 20px;
}

.add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
}

.add-to-cart:hover {
    background-color: var(--primary-red);
}

/* ===== FORM STYLES ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(228, 25, 55, 0.1);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.p-30 { padding: 30px; }
.hidden { display: none; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    
    .header-main {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 10px 10px;
    }
    
    .hero {
        padding: 50px 20px;
    }
    
    .feature-grid,
    .menu-items,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FLOATING LOGO ===== */
.floating-logo {
    position: fixed;
    top: 0;
    left: 20px;
    z-index: 1001;
    pointer-events: auto;
}

.floating-logo-image {
    height: 180px;
    width: auto;
    max-width: 400px;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    animation: logoFloatIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes logoFloatIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-25px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-logo:hover .floating-logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .floating-logo-image {
        height: 200px;
        max-width: 320px;
    }
    .floating-logo {
        top: 0;
        left: 15px;
    }
}

@media (max-width: 768px) {
    .floating-logo-image {
        height: 150px;
        max-width: 240px;
    }
    .floating-logo {
        top: 0;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .floating-logo-image {
        height: 120px;
        max-width: 190px;
    }
    .floating-logo {
        top: 0;
        left: 5px;
    }
    
    .header-container {
        padding: 0 10px 0 140px;
    }
}

/* ===== NEW FIVE GUYS FOOTER (from image) ===== */
.new-footer {
    background-color: #b4162e;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Columns */
.footer-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* Footer Columns */
.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* First Column (FIVE GUYS) */
.footer-column:first-child h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 1px;
}

.footer-column:first-child h3 span:first-child {
    color: #e31837;
}

.footer-column:first-child h3 span:last-child {
    color: #ffffff;
}

/* App Download Section */
.app-download {
    margin-top: 25px;
}

.app-download p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.app-button {
    display: inline-block;
    background-color: #333333;
    border-radius: 6px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border: 1px solid #444;
}

.app-button:hover {
    background-color: #444444;
    text-decoration: none;
}

.app-button img {
    height: 20px;
    width: auto;
}

.app-button span {
    display: block;
    font-size: 10px;
    color: #999;
    margin-top: 2px;
}

.app-button strong {
    display: block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-description {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #222;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.newsletter-input:focus {
    border-color: #e31837;
}

.newsletter-button {
    background-color: #e31837;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #b3122a;
}

/* Bottom Footer */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    color: #999999;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Social Icons (if needed) */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: #cccccc;
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #ffffff;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}


/* ===== MENU GRID SECTION ===== */
.menu-grid-section {
    position: relative;
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Grid Item */
.menu-grid-item {
    position: relative;
    transition: transform 0.3s ease;
}

.menu-grid-item:hover {
    transform: translateY(-5px);
}

.menu-category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
    position: relative;
}

.menu-category-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-inner {
    position: relative;
    height: 100%;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 3;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
    border-radius: 0 0 12px 12px;
}

.menu-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.menu-button:hover {
    background-color: transparent;
    color: var(--primary-red);
    transform: scale(1.05);
}

.card-graphic {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.card-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-category-card:hover .card-graphic img {
    transform: scale(1.05);
}

/* Full Menu Card Special Styling */
.menu-grid-item:last-child .menu-category-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b3122a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.menu-grid-item:last-child .card-content {
    position: relative;
    background: none;
    text-align: center;
    padding: 40px 30px;
}

.menu-grid-item:last-child h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.menu-grid-item:last-child .menu-button {
    background-color: var(--white);
    color: var(--primary-red);
    font-size: 1.2rem;
    padding: 15px 40px;
}

.menu-grid-item:last-child .menu-button:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Background Ingredients */
.menu-bg-ingredients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-ingredient {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.bg-ingredient--1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: auto;
    animation-delay: 0s;
}

.bg-ingredient--2 {
    top: 5%;
    right: 10%;
    width: 200px;
    height: auto;
    animation-delay: 5s;
}

.bg-ingredient--3 {
    bottom: 15%;
    left: 8%;
    width: 250px;
    height: auto;
    animation-delay: 10s;
}

.bg-ingredient--4 {
    bottom: 10%;
    right: 5%;
    width: 220px;
    height: auto;
    animation-delay: 15s;
}

.bg-ingredient--5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    opacity: 0.05;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Peanuts Tooltip */
.menu-tooltip {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.tooltip-container {
    position: relative;
}

.tooltip-toggle {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b3122a 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.tooltip-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(227, 24, 55, 0.4);
}

.tooltip-toggle[aria-expanded="true"] {
    background: var(--dark-gray);
}

.tooltip-content {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.tooltip-content[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-gray);
    padding: 5px;
    transition: color 0.3s ease;
}

.tooltip-close:hover {
    color: var(--primary-red);
}

.tooltip-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.tooltip-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tooltip-image {
    flex-shrink: 0;
}

.tooltip-image img {
    width: 67px;
    height: auto;
}

.tooltip-text {
    flex: 1;
}

.tooltip-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Tooltip */
@media (max-width: 768px) {
    .menu-tooltip {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 40px auto 0;
        max-width: 300px;
    }
    
    .tooltip-content {
        width: 300px;
        right: 50%;
        transform: translateX(50%) translateY(10px);
    }
    
    .tooltip-content[aria-hidden="false"] {
        transform: translateX(50%) translateY(0);
    }
}

@media (max-width: 480px) {
    .tooltip-content {
        width: 280px;
    }
    
    .tooltip-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Staggered animations for grid items */
.menu-grid-item:nth-child(1) { animation-delay: 0.1s; }
.menu-grid-item:nth-child(2) { animation-delay: 0.2s; }
.menu-grid-item:nth-child(3) { animation-delay: 0.3s; }
.menu-grid-item:nth-child(4) { animation-delay: 0.4s; }
.menu-grid-item:nth-child(5) { animation-delay: 0.5s; }
.menu-grid-item:nth-child(6) { animation-delay: 0.6s; }
.menu-grid-item:nth-child(7) { animation-delay: 0.7s; }
.menu-grid-item:nth-child(8) { animation-delay: 0.8s; }

/* Tooltip open animation */
.tooltip-open {
    animation: tooltipBounce 0.4s ease;
}

@keyframes tooltipBounce {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    50% {
        opacity: 1;
        transform: scale(1.02) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

/* Image loading effect */
.card-graphic img {
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.card-graphic img:not(.loaded) {
    opacity: 0;
}

.card-graphic img.loaded {
    opacity: 1;
}

/* Hover effect for card buttons */
.menu-button {
    position: relative;
    overflow: hidden;
}

.menu-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.menu-button:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0) translate(-50%, -50%);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25) translate(-50%, -50%);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40) translate(-50%, -50%);
    }
}


/* ===== SPLIT MEDIA SECTION ===== */
.split-media-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Split Media Layout */
.split-media {
    display: flex;
    align-items: center;
    min-height: 500px;
    gap: 60px;
}

@media (max-width: 992px) {
    .split-media {
        flex-direction: column;
        gap: 40px;
    }
}

/* Content Side */
.split-content {
    flex: 1;
    padding: 40px 0;
}

.content-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.content-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Icon */
.content-icon {
    margin: 0;
    animation: bounce 2s infinite ease-in-out;
}

.content-icon img {
    width: 68px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Heading */
.section-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
}

/* Description */
.section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin: 10px 0 30px;
    max-width: 400px;
}

/* Button Group */
.button-group {
    margin-top: 20px;
}

.store-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}

.store-button:hover {
    background-color: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.4);
}

/* Ripple Effect */
.store-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.store-button:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0) translate(-50%, -50%);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25) translate(-50%, -50%);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40) translate(-50%, -50%);
    }
}

/* Image Side */
.split-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.split-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.split-image:hover .store-image {
    transform: scale(1.05);
}

/* Color Options for Different Sections */
.color-option-0 .split-content {
    background-color: #f9f9f9;
    padding: 60px 40px;
    border-radius: 15px;
}

.color-option-1 .content-wrapper {
    padding: 40px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-heading {
        font-size: 2.4rem;
    }
    
    .split-media {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .split-media-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .split-image {
        order: -1;
        transform: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .split-image:hover {
        transform: none;
    }
    
    .content-wrapper {
        text-align: center;
    }
    
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .store-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .split-content {
        padding: 30px 0;
    }
    
    .content-stack {
        gap: 20px;
    }
    
    .content-icon img {
        width: 50px;
    }
}

/* Animation for Section Entrance */
.split-media-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.split-media-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Add a map pin animation */
.map-pin-animation {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.1) 0%, rgba(227, 24, 55, 0) 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Decorative Elements */
.location-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pinDrop 1s ease-out forwards;
    opacity: 0;
}

.decoration-pin::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.decoration-pin-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0.5s;
}

.decoration-pin-2 {
    top: 40%;
    right: 10%;
    animation-delay: 0.8s;
}

.decoration-pin-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.1s;
}

@keyframes pinDrop {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateY(-100px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
        transform: rotate(-45deg) translateY(0);
    }
}


/* ===== GENERAL SECTION STYLES ===== */
.split-content-section,
.hero-badge-section,
.crew-hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===== CATERING SECTION ===== */
.catering-section {
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
}

.split-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

.reverse-layout {
    flex-direction: row-reverse;
}

.split-image-container {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover .feature-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227,24,55,0.1) 0%, rgba(255,199,44,0.05) 100%);
    mix-blend-mode: multiply;
}

.split-text-container {
    flex: 1;
}

.content-block {
    padding: 40px;
    position: relative;
}

.decorative-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    animation: gentleBounce 3s infinite ease-in-out;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.accent-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #222;
    margin: 0 0 25px;
    position: relative;
    display: inline-block;
}

.accent-line {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E31837 0%, #FFC72C 100%);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E31837 0%, #B3122A 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(227,24,55,0.3);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(227,24,55,0.4);
}

.primary-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.features-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227,24,55,0.1);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    color: white;
    position: relative;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 600px;
}

.hero-text-block {
    flex: 1;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.title-decorator {
    position: absolute;
    top: -15px;
    left: -25px;
    width: 60px;
    height: 60px;
    background: #E31837;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
    align-content: flex-start;
    flex-direction: column;
}

.outline-btn {
    padding: 16px 40px;
    border: 2px solid #E31837;
    border-radius: 50px;
    color: #E31837;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    background: transparent;
}

.outline-btn:hover {
    background: #E31837;
    color: white;
    transform: translateY(-2px);
}

.text-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #FFC72C;
}

.text-link svg {
    width: 16px;
    height: 16px;
}

/* Badge Container */
.badge-container {
    flex: 0 0 300px;
    position: relative;
    z-index: 2;
}

.badge-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    animation: floatBadge 6s infinite ease-in-out;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.badge-base {
    position: absolute;
    width: 80%;
    height: 80%;
    filter: drop-shadow(0 10px 30px rgba(227,24,55,0.3));
}

.badge-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-elements {
    position: absolute;
    width: 80%;
    height: 80%;
}

.badge-element {
    position: absolute;
    font-size: 24px;
    animation: floatElement 8s infinite ease-in-out;
}

.badge-element:nth-child(1) { animation-delay: 0s; }
.badge-element:nth-child(2) { animation-delay: 2s; }
.badge-element:nth-child(3) { animation-delay: 4s; }
.badge-element:nth-child(4) { animation-delay: 6s; }

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10px, -10px) scale(1.1); }
    66% { transform: translate(-10px, 10px) scale(0.9); }
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26,26,26,1) 0%, rgba(26,26,26,0.8) 50%, rgba(26,26,26,0) 100%);
}

/* ===== CREW SECTION ===== */
.crew-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.crew-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 80px 0;
}

.crew-title {
    font-size: 4rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-highlight {
    display: block;
    color: #E31837;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,199,44,0.3);
    z-index: -1;
}

.crew-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 500px;
}

.crew-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.crew-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.crew-btn.primary {
    background: linear-gradient(135deg, #E31837 0%, #B3122A 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(227,24,55,0.3);
}

.crew-btn.secondary {
    background: white;
    color: #222;
    border: 2px solid #E31837;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.crew-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.crew-btn.primary:hover {
    box-shadow: 0 20px 40px rgba(227,24,55,0.4);
}

.crew-btn.secondary:hover {
    background: #E31837;
    color: white;
    border-color: #E31837;
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.crew-btn:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Crew Stats */
.crew-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #E31837;
    margin-bottom: 10px;
    font-family: 'Arial Black', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Elements */
.crew-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.main-bg {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}

.main-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(248,249,250,1) 0%, rgba(248,249,250,0.8) 30%, rgba(248,249,250,0) 100%);
}

.floating-images {
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
}

.float-image {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transform: rotate(var(--rotate, 0deg));
    animation: floatPhoto 15s infinite ease-in-out;
}

.float-image:nth-child(1) { --rotate: -5deg; animation-delay: 0s; }
.float-image:nth-child(2) { --rotate: 3deg; animation-delay: 5s; }
.float-image:nth-child(3) { --rotate: -8deg; animation-delay: 10s; }

.float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatPhoto {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    33% { transform: translateY(-20px) rotate(calc(var(--rotate, 0deg) + 5deg)); }
    66% { transform: translateY(20px) rotate(calc(var(--rotate, 0deg) - 5deg)); }
}

/* Decorative Elements */
.crew-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.decoration-burst {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.burst-1 {
    width: 300px;
    height: 300px;
    background: #E31837;
    top: 10%;
    right: 20%;
    animation: pulseBurst 8s infinite ease-in-out;
}

.burst-2 {
    width: 200px;
    height: 200px;
    background: #FFC72C;
    bottom: 20%;
    right: 10%;
    animation: pulseBurst 10s infinite ease-in-out reverse;
}

@keyframes pulseBurst {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
}

.decoration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#E31837 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .split-content-wrapper,
    .hero-content-wrapper {
        gap: 40px;
    }
    
    .crew-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .split-content-wrapper,
    .hero-content-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .reverse-layout {
        flex-direction: column;
    }
    
    .split-image-container,
    .split-text-container,
    .hero-text-block,
    .badge-container {
        width: 100%;
        flex: none;
    }
    
    .badge-container {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .hero-background {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        border-radius: 0;
    }
    
    .crew-background {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 60px;
        order: -1;
    }
    
    .floating-images {
        display: none;
    }
}

@media (max-width: 768px) {
    .split-content-section,
    .hero-badge-section,
    .crew-hero-section {
        padding: 60px 0;
    }
    
    .accent-title,
    .hero-title,
    .crew-title {
        font-size: 2.5rem;
    }
    
    .section-lead,
    .hero-description,
    .crew-description {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .hero-actions,
    .crew-actions,
    .crew-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .crew-btn {
        width: 100%;
        justify-content: center;
    }
    
    .content-block {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .accent-title,
    .hero-title,
    .crew-title {
        font-size: 2rem;
    }
    
    .primary-btn,
    .outline-btn,
    .crew-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .badge-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ===== MODERN HERO SECTION ===== */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-images {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: contrast(1.2) brightness(0.8) saturate(1.3);
    transition: opacity 0.5s ease;
}

.mobile-bg {
    display: none;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gradient-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
    z-index: 2;
}

.texture-overlay {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 31.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e31837' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 3;
}

/* Floating Ingredients */
.floating-ingredients {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.ingredient {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: floatIngredient 20s infinite ease-in-out;
}

.ingredient:nth-child(1) { animation-delay: 0s; }
.ingredient:nth-child(2) { animation-delay: 4s; }
.ingredient:nth-child(3) { animation-delay: 8s; }
.ingredient:nth-child(4) { animation-delay: 12s; }
.ingredient:nth-child(5) { animation-delay: 16s; }

@keyframes floatIngredient {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-10px, 20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(-20px, -10px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-inner {
    display: inline-block;
    width: 120px;
    height: 120px;
    animation: pulseBadge 4s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(227, 24, 55, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 10px 25px rgba(227, 24, 55, 0.7));
    }
}

/* Hero Heading */
.hero-heading {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.title-word {
    display: block;
    position: relative;
}

.title-word-1 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title-word-2 .highlight {
    color: #FFC72C;
    position: relative;
    display: inline-block;
}

.title-word-2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(227, 24, 55, 0.3);
    z-index: -1;
    transform: skew(-15deg);
}

.title-word-3 {
    color: #E31837;
    text-shadow: 0 2px 10px rgba(227, 24, 55, 0.3);
}

.title-decoration {
    position: relative;
    height: 2px;
    margin: 30px auto;
    width: 200px;
}

.decor-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E31837, transparent);
    transform: translateY(-50%);
}

.decor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #FFC72C;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 199, 44, 0.7);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 199, 44, 0);
    }
}

/* Hero Description */
.hero-description {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.description-inner {
    max-width: 600px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 300;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC72C;
    font-style: italic;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
}

.highlight-text::before,
.highlight-text::after {
    content: "✦";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #E31837;
    font-size: 1.2rem;
    opacity: 0.7;
}

.highlight-text::before {
    left: 0;
}

.highlight-text::after {
    right: 0;
}

/* Hero Actions */
.hero-actions {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.order-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #E31837 0%, #B3122A 100%);
    color: white;
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.4);
    border: 2px solid transparent;
}

.order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.order-button:hover::before {
    left: 100%;
}

.order-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(227, 24, 55, 0.6);
    border-color: white;
}

.order-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-icon,
.button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-icon svg,
.button-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.button-arrow svg {
    width: 20px;
    height: 20px;
}

.secondary-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.secondary-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.secondary-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFC72C;
    transition: width 0.3s ease;
}

.secondary-link:hover {
    color: white;
}

.secondary-link:hover::after {
    width: 100%;
}

.link-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    animation: fadeInUp 0.8s ease 1s both;
    cursor: pointer;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background: #E31837;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.decoration-burst {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    animation: pulseBurst 8s infinite ease-in-out;
}

.burst-1 {
    width: 300px;
    height: 300px;
    background: #E31837;
    top: 20%;
    right: 10%;
}

.burst-2 {
    width: 200px;
    height: 200px;
    background: #FFC72C;
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.burst-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 40%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes pulseBurst {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.15;
    }
}

.decoration-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
}

.line-1 {
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%;
}

.line-2 {
    top: 0;
    right: 30%;
    width: 1px;
    height: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .modern-hero {
        min-height: 90vh;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }
    
    .order-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-bg {
        display: block;
    }
    
    .desktop-bg {
        display: none;
    }
    
    .main-title {
        font-size: 2.8rem;
        letter-spacing: 0;
    }
    
    .hero-content-wrapper {
        padding: 80px 0;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 1.3rem;
    }
    
    .order-button {
        padding: 18px 35px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .secondary-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .link-separator {
        display: none;
    }
    
    .floating-ingredients {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .badge-inner {
        width: 100px;
        height: 100px;
    }
    
    .order-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .hero-content-wrapper {
        padding: 60px 0;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .ingredient,
    .badge-inner,
    .decor-dot,
    .order-button::before,
    .wheel,
    .decoration-burst {
        animation: none;
    }
    
    .order-button:hover {
        transform: none;
    }
}


/* ===== FIVE GUYS SLIDER ===== */
.fiveguys-slider {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* Slides Wrapper */
.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    animation: zoomInOut 20s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.slide-content-inner {
    max-width: 600px;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.slide.active .slide-content-inner {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide Badge */
.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B3122A 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(227, 24, 55, 0.5);
    }
}

/* Slide Title */
.slide-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-yellow);
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(227, 24, 55, 0.3);
    z-index: -1;
    transform: skew(-15deg);
}

/* Slide Description */
.slide-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.slider-button.primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B3122A 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(227, 24, 55, 0.3);
}

.slider-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.slider-button:hover {
    transform: translateY(-5px) scale(1.05);
}

.slider-button.primary:hover {
    box-shadow: 0 15px 35px rgba(227, 24, 55, 0.5);
    border-color: white;
}

.slider-button.secondary:hover {
    background: white;
    color: var(--primary-red);
    border-color: white;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.slider-button:hover .btn-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-arrow:hover {
    background: rgba(227, 24, 55, 0.9);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-red);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slide-indicator.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

.slide-indicator.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: indicatorPulse 2s infinite;
}

@keyframes indicatorPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    bottom: 40px;
    right: 30px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.slide-counter-separator {
    opacity: 0.5;
}

/* Autoplay Controls */
.autoplay-controls {
    position: absolute;
    bottom: 40px;
    left: 30px;
    z-index: 10;
}

.autoplay-toggle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.autoplay-toggle:hover {
    background: rgba(227, 24, 55, 0.9);
    transform: scale(1.1);
}

.autoplay-toggle svg {
    width: 20px;
    height: 20px;
}

.play-icon, .pause-icon {
    position: absolute;
    transition: opacity 0.3s ease;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(transparent, white, transparent);
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .slider-arrow-prev {
        left: 15px;
    }
    
    .slider-arrow-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .slider-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .slide-indicators {
        bottom: 80px;
    }
    
    .slide-counter,
    .autoplay-controls {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-indicators {
        bottom: 100px;
    }
}

/* Slide Transitions */
.slide-exit {
    animation: slideExit 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideExit {
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

.slide-enter {
    animation: slideEnter 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideEnter {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Progress Bar */
.slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-red);
    z-index: 20;
    transition: width 5s linear;
}

.slide.active .slide-progress {
    width: 100%;
}


/* Loading animation for slider images */
.slide-bg-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-bg-image.loaded {
    opacity: 1;
}

/* Loading skeleton */
.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2a2a2a 0%, #333 50%, #2a2a2a 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

.slide-bg-image.loaded + .slide-overlay {
    z-index: 2;
}

@keyframes loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Update slider background styles for video */
.slide-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    z-index: 1;
}

/* Remove the zoom animation for videos (or keep it subtle) */
.slide-bg-video {
    animation: none;
}

/* Optional: Add a subtle zoom effect for video */
@keyframes videoZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Apply to video only if you want the effect */
.slide.active .slide-bg-video {
    animation: videoZoom 20s infinite alternate ease-in-out;
}

/* Adjust overlay for better text readability over video */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Video loading state */
.slide-bg-video.loading {
    opacity: 0;
}

.slide-bg-video.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Fallback image styling (if video fails) */
.slide-bg-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hardware acceleration for smoother video playback */
.slide-bg-video {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

/* iOS-specific video fixes */
@supports (-webkit-touch-callout: none) {
    .slide-bg-video {
        /* iOS needs explicit dimensions */
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    
    /* Disable zoom animation on iOS for better performance */
    .slide-bg-video {
        animation: none !important;
    }
}

/* Reduce video quality on mobile to save bandwidth */
@media (max-width: 768px) {
    /* You might want to use lower quality video sources for mobile */
}


/* ===== BEST SELLERS (Horizontal Slider) ===== */
.bs-section{
  margin: 10px 0 30px;
}

.bs-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin: 10px 0 14px;
}

.bs-title{
  font-size: 32px;
  font-weight: 800;
  margin:0;
  color:#222;
}

.bs-viewall{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#222;
  text-decoration:none;
  user-select:none;
}

.bs-viewall-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#ffc72c;
  font-size:18px;
  line-height:1;
}

.bs-carousel{
  position:relative;
}

.bs-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  padding: 8px 0 14px;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling: touch;
}
.bs-track:focus{
  outline:none;
}

/* hide scrollbar (nice clean like screenshot) */
.bs-track::-webkit-scrollbar{ height: 0; }
.bs-track{ scrollbar-width:none; }

.bs-card{
  position:relative;
  flex: 0 0 340px;
  height: 360px;
  border-radius: 22px;
  overflow:hidden;
  background: #ff0000ed;
  text-decoration:none;
  scroll-snap-align:start;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.05);
}

.bs-card-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 50% 30%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
}

.bs-card-title{
  position:absolute;
  top:28px;
  left:22px;
  right:22px;
  text-align:center;
  font-weight:900;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:0.8px;
  font-size:34px;
  line-height:1.05;
  text-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.bs-card-img{
  position:absolute;
  left:50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 86%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.25));
}

/* Left/Right scroll buttons */
.bs-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:none;
  background: rgba(0,0,0,0.45);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  opacity: 0;
  pointer-events:none;
}

.bs-carousel:hover .bs-nav{
  opacity: 1;
  pointer-events:auto;
}

.bs-prev{ left:-10px; }
.bs-next{ right:-10px; }

.bs-nav:hover{
  background: rgba(0,0,0,0.60);
  transform: translateY(-50%) scale(1.05);
}

/* Responsive */
@media (max-width: 768px){
  .bs-title{ font-size: 26px; }
  .bs-card{ flex-basis: 280px; height: 320px; border-radius: 18px; }
  .bs-card-title{ font-size: 28px; top:22px; }
  .bs-prev{ left: 6px; }
  .bs-next{ right: 6px; }
}

@media (max-width: 420px){
  .bs-card{ flex-basis: 240px; height: 300px; }
  .bs-card-title{ font-size: 24px; }
}

/* ===== MENU PAGE STYLES ===== */

/* Menu Hero Section */
.menu-hero-section {
    background: linear-gradient(135deg, #e31837 0%, #b3122a 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.menu-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.menu-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .menu-hero-title {
        font-size: 2.5rem;
    }

    .menu-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Menu Sections */
.menu-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.menu-section-alt {
    background-color: #f8f9fa;
}

.menu-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-section .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-section .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu-item-card.featured-deal {
    border: 3px solid #e31837;
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e31837;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.item-image {
    height: 200px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-card:hover .item-image img {
    transform: scale(1.05);
}

.item-content {
    padding: 25px;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.item-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #e31837;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    background: #e31837;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #b3122a;
}

.add-to-cart-btn.featured {
    background: #e31837;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .menu-hero-section {
        padding: 60px 0 40px;
    }

    .menu-hero-title {
        font-size: 2rem;
    }

    .menu-section {
        padding: 60px 0;
    }

    .menu-section .section-title {
        font-size: 2rem;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .item-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .menu-hero-title {
        font-size: 1.8rem;
    }

    .menu-section .section-title {
        font-size: 1.8rem;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-price {
        font-size: 1.2rem;
    }
}

/* ===== iOS/MOBILE FIXES ===== */

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .nav-link {
        min-height: 44px; /* Apple recommended minimum touch target */
        display: flex;
        align-items: center;
    }
    
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .enquiry-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Disable callout and tap highlight on iOS */
a, button {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling fix for iOS */
@media (max-width: 768px) {
    .main-navigation.active {
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
    }
}