* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #fff;
    font-family: 'Inter', sans-serif;
    color: #1e1e1e;
}

/* ===== TOP MARQUEE ===== */
.top-ticker {
    background: #1a1a1a;
    color: #fefaf5;
    padding: 0.55rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
    z-index: 200;
    height: 36px;
}
.ticker-track {
    display: inline-block;
    will-change: transform;
    animation: tickerScroll 32s linear infinite;
}
.ticker-track span { margin-right: 2.5rem; }
.ticker-track i { color: #d32f2f; margin-right: 6px; }
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== ISLAND HEADER ===== */
.header-island {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.7rem 1.5rem;
    display: flex;
    justify-content: center;
    background: transparent;
    pointer-events: none;
}
.island-container {
    pointer-events: all;
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 60px;
    padding: 0.5rem 1.4rem 0.5rem 0.9rem;
    background: rgba(255,255,255,0.13);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 28px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.14);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.header-island.scrolled .island-container,
body:not(.home-page) .island-container {
    background: rgba(18,18,18,0.72);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 8px 36px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}
.logo-img {
    height: 52px; width: auto; object-fit: contain;
    cursor: pointer; transition: height 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}
.header-island.scrolled .logo-img { height: 42px; }
.nav-divider {
    width: 1px; height: 26px;
    background: rgba(255,255,255,0.28);
    margin: 0 0.4rem; flex-shrink: 0;
}
.nav-island { display: flex; gap: 0.2rem; list-style: none; align-items: center; }
.nav-island a {
    text-decoration: none; font-weight: 600;
    color: rgba(255,255,255,0.92); font-size: 0.87rem;
    text-transform: uppercase; letter-spacing: 0.04em;
    padding: 0.42rem 0.95rem; border-radius: 40px;
    transition: background 0.18s ease, color 0.18s ease;
}
.nav-island a:hover { color: #fff; background: rgba(255,255,255,0.14); }
.nav-island a.active { color: #fff; background: rgba(211,47,47,0.8); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: rgba(255,255,255,0.9);
    border-radius: 3px;
    transition: transform 0.28s ease, opacity 0.2s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-divider { display: none; }
    .island-container { position: relative; }
    .nav-island {
        display: none;
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 1rem;
        right: 1rem;
        background: rgba(18,18,18,0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 12px 40px rgba(0,0,0,0.5);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem;
        list-style: none;
    }
    .nav-island.open { display: flex; }
    .nav-island a {
        display: block;
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
        font-size: 0.95rem;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.6rem; }
}

/* ===== HERO (home) ===== */
.hero-wrap {
    position: relative;
    height: calc(100vh - 36px);
    min-height: 520px;
    overflow: hidden;
}
.hero { width: 100%; height: 100%; position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    opacity: 0; transition: opacity 1.2s ease; will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); z-index: 1; }
.hero-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 2rem; color: #fff;
}
.hero-logo { max-width: 150px; margin-bottom: 1rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35)); }
.hero-content h1 {
    font-family: 'Oswald', sans-serif; font-size: 4rem;
    font-weight: 700; letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-tagline {
    font-size: 1.05rem; background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.4rem; border-radius: 40px; margin-top: 0.5rem;
}
.hero-buttons { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary {
    background: #d32f2f; padding: 11px 28px; font-weight: 700;
    border-radius: 50px; text-decoration: none; color: #fff;
    display: inline-flex; align-items: center; gap: 7px;
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #b71c1c; transform: scale(1.02); }
.btn-secondary {
    border: 2px solid #fff; padding: 9px 26px; font-weight: 700;
    border-radius: 50px; text-decoration: none; color: #fff;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: #fff; color: #d32f2f; }

/* ===== INNER PAGE OFFSET ===== */
body:not(.home-page) .container:first-of-type { padding-top: 7.5rem; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: #1e1e1e; }
.section-header .accent { width: 60px; height: 3px; background: #d32f2f; margin: 10px auto 0; border-radius: 4px; }

/* ===== SPECIALS BANNER ===== */
.specials-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 28px; padding: 2rem; margin: 2rem 0;
    display: flex; flex-wrap: wrap;
    justify-content: space-around; text-align: center; gap: 1.5rem;
}
.specials-item { flex: 1; min-width: 160px; }
.specials-item i { font-size: 2rem; color: #d32f2f; margin-bottom: 0.5rem; display: block; }
.specials-item h3 { color: #d32f2f; font-family: 'Oswald', sans-serif; font-size: 1.3rem; }
.specials-item p { color: #ddd; font-size: 0.88rem; }

/* ===== WINGS BANNER ===== */
.wings-banner {
    background: #1e1e1e; border-radius: 28px;
    margin: 2rem 0; overflow: hidden; display: flex; flex-wrap: wrap;
}
.wings-left { flex: 1.2; padding: 2.5rem; text-align: center; }
.tuesday-badge {
    background: #d32f2f; display: inline-block;
    padding: 4px 18px; border-radius: 40px;
    font-size: 0.78rem; font-weight: 700; margin-bottom: 1rem; color: #fff;
}
.wings-price { font-size: 3.5rem; font-weight: 900; font-family: 'Oswald', sans-serif; color: #d32f2f; line-height: 1; }
.wings-left p { color: #fff; }
.wings-right { flex: 1; padding: 2rem; background: #252525; border-radius: 22px; margin: 1rem; }
.wings-right p { color: #fff !important; font-weight: 600; }
.wings-right p:first-of-type { color: #d32f2f !important; font-size: 1.05rem; }
.sauce-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.sauce-tag { background: #d32f2f; padding: 5px 13px; border-radius: 40px; font-size: 0.74rem; color: #fff; font-weight: 500; }
.wings-note { color: #aaa; font-size: 0.78rem; margin-top: 1rem; }

/* ===== DRINK GRID ===== */
.drink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 0.85rem; margin-bottom: 2rem;
}
.drink-card {
    background: #fff; border-radius: 55px; padding: 0.75rem 1.2rem;
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid #e8e0d5;
    transition: border-color 0.18s, transform 0.15s;
    flex-wrap: wrap; gap: 0.5rem;
}
.drink-card > div:first-child { flex: 2; }
.drink-name { font-weight: 700; display: block; font-size: 0.93rem; }
.drink-style { font-size: 0.68rem; color: #888; display: block; margin-top: 0.1rem; }
.drink-prices { display: flex; gap: 0.7rem; align-items: baseline; }
.drink-price { color: #d32f2f; font-weight: 800; font-size: 0.88rem; }
.drink-price-large { color: #d32f2f; font-weight: 800; font-size: 0.98rem; }
.drink-price-large::before { content: "•"; margin-right: 0.4rem; color: #ccc; font-weight: normal; }
.drink-card:hover { border-color: #d32f2f; transform: translateY(-2px); }
.drink-single-price { color: #d32f2f; font-weight: 800; font-size: 0.95rem; }

/* ===== MENU PAGE ===== */
.menu-page-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}
.menu-page-title h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem; font-weight: 700; color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.menu-page-title h1::before { content: "🍽️ "; }
.menu-page-title p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-top: 0;
}

/* Box per category */
.menu-box {
    border: 1.5px solid #e0d8d0;
    border-radius: 20px;
    margin-bottom: 1.4rem;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.menu-box:hover { box-shadow: 0 4px 22px rgba(0,0,0,0.07); border-color: #ccc; }

.menu-box-inner { display: flex; align-items: stretch; }

/* LEFT panel: image on top, icon/name/sub below */
.menu-box-label {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1.5px solid #e0d8d0;
    background: #fafaf9;
    overflow: hidden;
}

/* Food photo — sits below the icon/name/sub, fills remaining label height */
.menu-label-img {
    width: 100%;
    flex: 1;
    min-height: 120px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-top: 1px solid #e8e0d5;
}

/* Icon + name + sub sit below the image */
.menu-label-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.1rem 1rem 1.3rem;
    gap: 0.25rem;
}

.menu-box-icon { font-size: 1.5rem; line-height: 1; }
.menu-box-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: #1e1e1e; line-height: 1.2;
}
.menu-box-sub { font-size: 0.68rem; color: #aaa; font-weight: 500; line-height: 1.3; }

/* RIGHT: items */
.menu-box-items {
    flex: 1;
    padding: 0.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Item row: name | price on right, desc below name */
.mi {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 1.2rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0ece7;
    align-items: baseline;
}
.mi:last-of-type { border-bottom: none; }

.mi-name {
    grid-column: 1;
    grid-row: 1;
    font-weight: 700;
    font-size: 0.92rem;
    color: #1e1e1e;
}
.mi-desc {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.71rem;
    color: #aaa;
    line-height: 1.4;
    margin-top: 0.1rem;
}

/* Price — always col 2, row 1, right-aligned red bold */
.mi-price {
    grid-column: 2;
    grid-row: 1;
    font-weight: 800;
    font-size: 0.95rem;
    color: #d32f2f;
    white-space: nowrap;
    text-align: right;
}
.mi-sep { color: #ddd; font-weight: 400; margin: 0 0.2rem; }
.mpi-two { font-size: 0.85rem; }
.mpi-three { font-size: 0.78rem; }

/* Note row — full width */
.mi-note {
    grid-column: 1 / -1;
    font-size: 0.71rem;
    color: #bbb;
    padding: 0.45rem 0 0.2rem;
    border-top: 1px dashed #ece8e4;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
    .menu-box-inner { flex-direction: column; }
    .menu-box-label {
        width: 100%;
        flex-direction: column;
        border-right: none;
        border-bottom: 1.5px solid #e0d8d0;
    }
    .menu-label-img {
        width: 100%;
        height: 130px;
        border-right: none;
        border-bottom: 1px solid #e8e0d5;
    }
    .menu-label-text { padding: 0.8rem 1rem; }
    .menu-box-items { padding: 0.3rem 1.1rem 0.8rem; }
    .mi { column-gap: 0.8rem; }
    .mpi-three { font-size: 0.72rem; }
}

/* Sports event poster image */
.event-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-top: 1rem;
    border-top: 1px solid #f0ece7;
    padding-top: 0.8rem;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #e8e0d5;
    font-size: 0.82rem;
    color: #6b6b6b;
    background: #ffffff;
    line-height: 1.7;
}

/* ===== INNER PAGE OFFSET (non-home pages) ===== */
body:not(.home-page) .container:first-of-type { padding-top: 7.5rem; }

/* ===== INFO / CONTACT PAGE ===== */
.info-page-hero {
    text-align: center;
    padding: 2.5rem 1rem 2rem;
    margin-bottom: 2rem;
}
.info-page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem; font-weight: 700; color: #1e1e1e;
}
.info-page-hero p { color: #999; font-size: 0.95rem; margin-top: 0.3rem; }

.info-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .info-two-col { grid-template-columns: 1fr; }
}

.hours-card, .contact-card {
    background: #fff;
    border: 1.5px solid #e0d8d0;
    border-radius: 20px;
    padding: 2rem;
}
.hours-card h2, .contact-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 1.2rem; color: #1e1e1e;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}
.hours-table td {
    padding: 0.55rem 0;
    border-bottom: 1px solid #f0ece7;
    color: #444;
}
.hours-table td:first-child { font-weight: 600; color: #1e1e1e; width: 55%; }
.hours-table tr:last-child td { border-bottom: none; }

.hours-extras p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.88rem;
    color: #444;
}
.contact-info-item i {
    color: #d32f2f;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}
.contact-info-item strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #aaa;
    margin-bottom: 0.15rem;
}
.contact-info-item a { color: #d32f2f; text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

.social-row {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.4rem;
}
.social-row a {
    width: 40px; height: 40px;
    background: #f5f0eb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #1e1e1e; font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.social-row a:hover { background: #d32f2f; color: #fff; }

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #e0d8d0;
    height: 340px;
    margin-bottom: 2rem;
}
.map-container iframe {
    width: 100%; height: 100%;
    border: none; display: block;
}

/* ===== SPORTS HERO / PAGE HERO (shared across sports, menu, info) ===== */
.sports-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}
.sports-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}
.sports-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}
.sports-screens-badge {
    display: inline-block;
    background: #d32f2f;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}
