:root {
    --gold: #BA8A22;
    --gold-light: #D4A432;
    --gold-dark: #9A7018;
    --deep-black: #000000;
    --charcoal: #333333;
    --light-gray: #F3F3F3;
    --cream: #FAF3E0;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--deep-black);
    color: var(--white);
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

nav.scrolled {
    padding: 15px 60px;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.logo {
    height: 70px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #B8962E 100%);
    color: var(--deep-black);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #E6C54D 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* PAGE HERO */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(186, 138, 34, 0.2) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(186, 138, 34, 0.1) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    margin-top: 80px;
}

.page-hero-label {
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(60px, 10vw, 140px);
    line-height: 1;
    background: linear-gradient(90deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--deep-black);
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--deep-black);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--deep-black);
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

/* SECTION STYLES */
section {
    padding: 120px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(48px, 8vw, 90px);
    line-height: 1;
}

/* CONTENT SECTION */
.content-section {
    background: var(--charcoal);
}

.content-section.dark {
    background: var(--deep-black);
}

/* GRID LAYOUTS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

/* CARDS */
.card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-image {
    height: 300px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 30px;
}

.card-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--gold);
}

.card-text {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--deep-black);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 5;
}

/* FULL IMAGE CARD */
.image-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.image-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.image-card:hover .image-card-overlay {
    transform: translateY(0);
}

.image-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin-bottom: 10px;
}

.image-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* TEXT CONTENT */
.text-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.text-content h2 span {
    color: var(--gold);
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* FEATURE LIST */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

/* MENU ITEMS */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.menu-item-info h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    margin-bottom: 8px;
}

.menu-item-info p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.5;
}

.menu-item-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: var(--gold);
}

/* CATEGORY TABS */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-tab {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-black);
}

/* BANNER */
.banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

.banner h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 60px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.banner p {
    font-size: 20px;
    margin-top: 10px;
    opacity: 0.9;
}

/* FORM STYLES */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* JOB LISTING */
.job-listing {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.job-listing:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.job-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* EVENT CARD */
.event-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.event-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.event-date {
    background: var(--gold);
    padding: 20px;
    text-align: center;
    color: var(--deep-black);
}

.event-date .day {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    line-height: 1;
}

.event-date .month {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-info {
    padding: 30px;
}

.event-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    margin-bottom: 10px;
}

.event-info p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* PERKS GRID */
.perks-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.perk {
    text-align: center;
}

.perk-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, #B8962E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.perk:hover .perk-icon {
    transform: scale(1.1);
}

.perk span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

/* MAP */
.map-container {
    height: 500px;
    background: #1a1a1a;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(1.2);
}

/* FOOTER */
footer {
    background: var(--deep-black);
    padding: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--deep-black);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    padding: 15px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    nav {
        padding: 15px 30px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 80px 30px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 60px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        flex-direction: column;
    }

    .category-tab {
        width: 100%;
        text-align: center;
    }

    .perks-grid {
        gap: 30px;
    }

    .job-header {
        flex-direction: column;
        gap: 20px;
    }

    .page-hero {
        height: 50vh;
    }
}

/* =====================================================
   MENU PAGE STYLES (Food & Drinks)
   Clean white theme matching printed menus
   ===================================================== */

.menu-page {
    background: #FAFAFA;
    min-height: 100vh;
}

.menu-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.menu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.menu-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 80px;
}

.menu-hero-label {
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.menu-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(50px, 10vw, 120px);
    color: white;
    line-height: 1;
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    margin-top: -60px;
    position: relative;
    z-index: 20;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

/* Decorative Bracket Divider */
.bracket-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 40px;
    gap: 15px;
}

.bracket-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    max-width: 200px;
}

.bracket-title {
    background: var(--gold);
    color: #000;
    padding: 12px 40px;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Menu Section */
.menu-section {
    margin-bottom: 60px;
}

.menu-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
}

.menu-item-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px dotted #ddd;
}

.menu-item-clean:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.menu-item-name .dietary {
    font-size: 11px;
    color: var(--gold);
    font-weight: 400;
    margin-left: 8px;
}

.menu-item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

.menu-item-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    white-space: nowrap;
    margin-left: 20px;
}

/* Dietary Legend */
.dietary-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 20px;
    background: var(--light-gray);
    font-size: 13px;
    color: #333;
}

.dietary-legend span {
    color: var(--gold);
    font-weight: 600;
    margin-right: 5px;
}

/* Featured Photos Grid */
.menu-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.menu-photo {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-photo:hover img {
    transform: scale(1.05);
}

.menu-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 15px;
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 2px;
}

/* Menu CTA Section */
.menu-cta {
    background: #000;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.menu-cta h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
}

.menu-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Menu Note Text */
.menu-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 40px;
    font-style: italic;
}

/* Cowboy Hat Special Section */
.cowboy-hat-section {
    background: #f9f6f0;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid var(--gold);
}

.cowboy-hat-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.cowboy-hat-section p {
    font-size: 14px;
    color: #666;
}

/* Menu Responsive */
@media (max-width: 900px) {
    .menu-two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .menu-photos {
        grid-template-columns: 1fr;
    }

    .menu-container {
        padding: 40px 25px;
    }

    .bracket-title {
        padding: 10px 25px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .menu-photos {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   GAMES PAGE STYLES
   ===================================================== */

.games-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-tile {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.game-tile:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.game-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-tile:hover img {
    transform: scale(1.1);
}

.game-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.game-tile h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
}

.game-tile p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .game-tile:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .game-tile {
        height: 300px;
    }
}
