/* ==========================================
   CSS Reset & Variables
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-red: #e51923;
    --dark-red: #b01018;
    --accent-yellow: #ffde17;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #f4f4f4;
    --text-muted: #b0b0b0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 25, 35, 0.4);
}

.primary-btn:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.secondary-btn:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ==========================================
   Floating Header & Navigation
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-red);
    padding: 10px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: nowrap;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-brand img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-yellow);
}

.nav-icons {
    display: flex;
    gap: 5px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 222, 23, 0.2);
}

.icon-btn:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* Mobile Hamburger Nav */
.nav-toggle-checkbox {
    display: none;
}

.nav-toggle-label {
    display: none;
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    color: var(--accent-yellow);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255, 222, 23, 0.2);
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-toggle-label:hover {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* ==========================================
   Hero Sections
   ========================================== */
.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.4)), url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px 20px;
}

.hero-content {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.badge {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 6px 16px;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-brand span {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

/* ==========================================
   Scrolling Marquee Strip
   ========================================== */
.marquee-strip {
    background-color: var(--primary-red);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-item img {
    height: 120px;
    width: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid var(--accent-yellow);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Normal marquee animation */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Reverse marquee animation */
@keyframes scrollMarqueeReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

/* When the reverse class is present, change the animation direction */
.marquee-strip.reverse .marquee-track {
    animation: scrollMarqueeReverse 25s linear infinite;
}
/* ==========================================
   Menu Shortcuts Section
   ========================================== */
.menu-shortcuts-section {
    padding: 90px 0;
    text-align: center;
}

.menu-shortcuts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.menu-shortcuts-section p {
    color: var(--text-muted);
    margin-bottom: 50px;
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.shortcut-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: var(--transition);
}

.shortcut-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.shortcut-card i {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.shortcut-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.shortcut-card p {
    margin-bottom: 25px;
}

/* ==========================================
   Challenge Section
   ========================================== */
.challenge-section {
    background: linear-gradient(135deg, #200203, #400507);
    padding: 70px 0;
    border-top: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
    text-align: center;
}

.challenge-box {
    max-width: 800px;
    margin: 0 auto;
}

.sub-alert {
    color: var(--accent-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.challenge-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.challenge-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================
   Catering Section
   ========================================== */
.catering-section {
    padding: 90px 0;
}

.catering-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.catering-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.catering-header p {
    color: var(--text-muted);
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.catering-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.catering-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.catering-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catering-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.catering-perks i {
    color: var(--accent-yellow);
}

.cal-embed-wrapper {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

/* ==========================================
   Call to Action Section
   ========================================== */
.cta-section {
    background-color: var(--primary-red);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .primary-btn {
    background-color: #000;
    color: var(--accent-yellow);
}

.cta-content .primary-btn:hover {
    background-color: #222;
}

/* ==========================================
   Map Section & Footer
   ========================================== */
.map-section {
    line-height: 0;
}

.site-footer {
    background-color: #0a0a0a;
    padding: 70px 0 20px 0;
    border-top: 1px solid #222;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3, .footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.brand-col .tagline {
    font-style: italic;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--card-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-red);
}

.footer-col p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col i {
    color: var(--accent-yellow);
    margin-top: 4px;
}

.reviews-badge {
    color: #fff;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-list span {
    color: var(--text-light);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.9rem;
}

.footer-reviews-embed {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    background-color: #0a0a0a;
}

.footer-reviews-embed iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

/* ==========================================
   Menu Pages Styling & Components
   ========================================== */
.menu-hero {
    height: 72vh;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.4)), url('hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}

.gf-hero {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.4)), url('hero-bg.jpg') center/cover no-repeat;
}

/* Menu Jump Bar (Consolidated & Cleaned) */
.menu-jump-bar {
    position: fixed;
    margin-top: 65px;
    z-index: 800;
    background-color: #181818;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
}

.jump-container {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
}

.menu-jump-bar a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 10px 18px;
    border-radius: 30px;
    background-color: var(--primary-red);
    box-shadow: 0 4px 10px rgba(229, 25, 35, 0.3);
    display: inline-block;
}

.menu-jump-bar a:visited {
    color: #fff !important;
}

.menu-jump-bar a:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    color: var(--accent-yellow) !important;
}

/* Menu Main Wrapper & Accordion Category Cards (Consolidated) */
.menu-main {
    padding: 60px 0;
}

.menu-category {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--card-bg);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 0; /* Padding is handled on children to support accordion layout */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    overflow: hidden;
}

.menu-category > .menu-grid {
    padding: 15px 15px 15px 15px;
}

.category-title {
    text-align: center;
    margin-bottom: 0;
    border-bottom: none;
    padding: 15px 15px;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: block;
}

.category-title::-webkit-details-marker {
    display: none;
}

.category-title::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--accent-yellow);
    font-size: 1.1rem;
    transition: var(--transition);
}

.menu-category[open] > .category-title {
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 15px;
}

.menu-category[open] > .category-title::after {
    transform: translateY(-50%) rotate(180deg);
}

.category-title:hover {
    background-color: rgba(229, 25, 35, 0.08);
}

.category-title h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.category-title p {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Menu Items & Grids */
.menu-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
}

.menu-item {
    background-color: #171717;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #252525;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 769px) {
    .menu-item {
        justify-content: space-between;
    }
}

.menu-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

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

.item-header h3 {
    font-size: 1.15rem;
    color: #fff;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    flex: 1 1 10px;
}

.item-header .price {
    font-weight: 700;
    color: var(--accent-yellow);
    font-size: 1.05rem;
    white-space: normal;
    text-align: right;
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Add-ons compact grid formatting */
.addon-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 15px !important;
}

.addon-grid .menu-item {
    padding: 14px 15px !important;
}

/* ==========================================
   Responsive Media Queries
   ========================================== */
@media (max-width: 968px) {
    .catering-content {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle-label {
        display: flex;
        order: 3;
    }

    .nav-icons {
        order: 2;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.98);
        border-bottom: 0 solid var(--primary-red);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, border-bottom-width 0.35s ease;
    }

    .nav-links a {
        padding: 16px 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }

    .nav-toggle-checkbox:checked ~ .nav-links {
        max-height: 400px;
        border-bottom-width: 2px;
    }
}

@media (max-width: 768px) {
    .menu-category > .menu-grid {
        padding: 0 15px 25px 15px;
    }
    .category-title {
        padding: 15px 40px 15px 15px;
    }
    .category-title::after {
        right: 15px;
    }
    .menu-grid {
        grid-template-columns: 1fr !important;
    }
    .menu-category {
        padding: 15px 15px;
        margin-bottom: 15px;
    }
    .menu-main.container {
        width: 100%;
        padding: 0 12px;
    }
    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .item-header .price {
        text-align: left;
    }
    .menu-item p {
        margin-top: 4px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 110px 15px 50px 15px;
    }
    .hero-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        margin-bottom: 14px;
    }
    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }
    .hero-brand {
        gap: 10px;
        margin-bottom: 14px;
    }
    .hero-brand img {
        height: 36px;
    }
    .hero-brand span {
        font-size: 1.2rem;
    }
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .marquee-strip {
        padding: 10px 0;
    }
    .marquee-track {
        gap: 15px;
    }
    .marquee-item img {
        height: 70px;
        width: 100px;
        border-width: 2px;
    }

    .menu-shortcuts-section {
        padding: 50px 0;
    }
    .menu-shortcuts-section h2 {
        font-size: 1.6rem;
    }
    .menu-shortcuts-section p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    .shortcut-card {
        padding: 28px 20px;
    }
    .shortcut-card i {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    .shortcut-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .shortcut-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .challenge-section {
        padding: 45px 0;
    }
    .challenge-section h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    .challenge-section p {
        font-size: 0.9rem;
    }
    .sub-alert {
        font-size: 0.8rem;
    }

    .catering-section {
        padding: 50px 0;
    }
    .catering-header {
        margin-bottom: 30px;
    }
    .catering-header h2 {
        font-size: 1.6rem;
    }
    .catering-header p {
        font-size: 0.9rem;
    }
    .catering-info h3 {
        font-size: 1.3rem;
    }
    .catering-info p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 40px 0;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

/* Challenge Section Layout */
.challenge-box {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.challenge-text {
    flex: 1;
    min-width: 280px;
}

/* Carousel Styling */
.challenge-carousel {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    aspect-ratio: 1 / 1;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease-in;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: none; /* Hidden by default, toggled via JS */
    aspect-ratio: 1 / 1;
}

.carousel-slide.current-slide {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Arrow Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    font-size: 1rem;
    z-index: 10;
    border-radius: 4px;
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: rgba(220, 20, 60, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}