/* ==========================================================================
   ROUNDERS PUB HOUSE - GLOBAL STYLES (GOOGLE FONTS VERSION)
   ========================================================================== */

/* Import Google Fonts automatically */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600&family=Russo+One&display=swap');

:root {
    /* Brand Colors */
    --navy: #263f5b;
    --bronze: #6f4a1d;
    --bronze-light: #8c602a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #333333;
    
    /* Typography Variables (Updated to Google Fonts) */
    --font-heading: 'Russo One', Impact, 'Arial Black', sans-serif;
    --font-body: 'Oswald', 'Trebuchet MS', Arial, sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

h2 {
    color: var(--navy);
    font-size: 2.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.2rem; /* Slightly larger for Oswald readability */
    font-weight: 300;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Utility Classes --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white h2 { color: var(--bronze); }
.text-bronze { color: var(--bronze); }
.bg-navy { background-color: var(--navy); }
.mt-4 { margin-top: 2rem; }

.rounded-img { border-radius: 8px; max-width: 100%; height: auto; display: block; }
.shadow { box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--bronze);
    color: var(--white);
    border: 2px solid var(--bronze);
}

.btn-primary:hover {
    background-color: var(--bronze-light);
    border-color: var(--bronze-light);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

/* --- Layout Systems --- */
.grid-layout {
    display: grid;
    gap: 2rem;
}

.flex-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.flex-half {
    flex: 1 1 45%;
}

.align-center {
    align-items: center;
}

/* ==========================================================================
   SPECIFIC SECTIONS
   ========================================================================== */

/* --- Header --- */
.main-header {
    background-color: var(--white);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.text-logo {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 2rem;
    letter-spacing: 2px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--bronze);
}

/* --- Header CTAs --- */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Creates perfect spacing between the link and the button */
}

.cta-link {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--bronze);
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-content p {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- Intro Section --- */
.intro {
    background-color: var(--off-white);
    text-align: center;
}

.intro-container {
    max-width: 800px;
}

/* --- Menu Teaser --- */
.food-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Sports Section --- */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.2rem;
    font-weight: 300;
}

.feature-list li::before {
    content: '■';
    color: var(--bronze);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.8rem;
}

.feature-list strong {
    font-weight: 600;
    color: var(--navy);
}

/* --- Footer --- */
.main-footer {
    padding: 4rem 0 2rem;
    background-color: #1a2b3e; /* A slightly darker shade than the standard --navy (#263f5b) */
    border-top: 5px solid var(--bronze); /* Creates a crisp visual break */
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 3rem;
}

.footer-logo {
    height: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    color: var(--bronze);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-links, .amenities-list {
    list-style: none;
}

.footer-links li, .amenities-list li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

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

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 1rem;
    color: #aaaaaa;
    font-weight: 300;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .flex-layout {
        flex-direction: column;
    }
}

/* ==========================================================================
   MENU PAGE SPECIFICS
   ========================================================================== */

.hero-short {
    height: 50vh; /* Shorter hero for inner pages */
    min-height: 350px;
}

.menu-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.menu-category-title {
    color: var(--bronze);
    border-bottom: 2px solid var(--off-white);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.menu-item {
    margin-bottom: 1.8rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.2rem;
    border-bottom: 1px dotted #ccc; /* Classic pub menu dotted line */
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    background-color: var(--white);
    padding-right: 10px;
}

.menu-item-price {
    font-family: var(--font-heading);
    color: var(--bronze);
    font-size: 1.2rem;
    background-color: var(--white);
    padding-left: 10px;
}

.menu-item-desc {
    color: #555;
    font-size: 1.1rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* --- Brunch Special Callout Box --- */
.brunch-special-box {
    background-color: var(--off-white, #f8f9fa); /* Use your existing light background variable */
    border: 2px solid var(--bronze);
    border-radius: 6px;
    padding: 2rem;
    margin: 1.5rem 0 2.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.special-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.special-title {
    color: var(--navy);
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--bronze);
    font-weight: 700;
}

.per-person {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.special-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.special-upgrade {
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.upgrade-badge {
    background-color: var(--bronze);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    letter-spacing: 1px;
}

.special-upgrade p {
    margin: 0;
    font-size: 0.95rem;
}

.special-terms {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .special-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .special-upgrade {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* --- Full Menu PDF Note --- */
.full-menu-note {
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-note-text {
    color: var(--navy);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.pdf-text-link {
    color: var(--bronze);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* NEW: Flexbox to perfectly center the icon and text */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Spacing between icon and text */
    transition: color 0.2s ease;
}

.pdf-icon {
    transition: transform 0.2s ease;
}

.pdf-text-link:hover {
    color: var(--navy);
}

/* NEW: Make the download arrow bounce down on hover */
.pdf-text-link:hover .pdf-icon {
    transform: translateY(3px); 
}

.happy-hour-banner {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
    border: 3px solid var(--bronze);
}

.happy-hour-banner p {
    color: var(--white);
    margin-bottom: 0.5rem;
    
}

.happy-hour-banner h2 {
    color: var(--bronze); /* Overrides the global navy h2 */
    font-size: 3rem; /* Make it pop a bit more while we're at it */
    
}

/* --- Happy Hour Banner --- */
.happy-hour-banner {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 1rem;
    margin: 3rem 0; /* Gives it breathing room from the other menu items */
    border-radius: 4px;
    border-top: 4px solid var(--bronze);
    border-bottom: 4px solid var(--bronze);
}


/* ==========================================================================
   SPORTS & EVENTS PAGE SPECIFICS
   ========================================================================== */

.bg-off-white {
    background-color: var(--off-white);
}

.mb-4 {
    margin-bottom: 3rem;
}

/* --- Masonry Gallery --- */
/* Using CSS columns to create a pure CSS masonry layout */
.masonry-gallery {
    column-count: 3;
    column-gap: 1.5rem;
    padding: 1rem 0;
}

.gallery-item {
    break-inside: avoid; /* Prevents images from breaking across columns */
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive Masonry */
@media (max-width: 900px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* ==========================================================================
   ABOUT PAGE SPECIFICS
   ========================================================================== */

/* --- Team Grid --- */
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.team-img-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%; /* Makes the image a perfect circle */
    overflow: hidden;
    border: 4px solid var(--bronze);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 0.2rem;
    color: var(--navy);
}

.team-role {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Community / Badges Section --- */
.community-container {
    max-width: 800px;
}

.badges-flex {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 3rem; /* Using emojis as lightweight icons for now */
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--bronze);
}

.badge-item p {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   CONTACT PAGE SPECIFICS
   ========================================================================== */

/* --- Info Blocks --- */
.contact-info-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--off-white);
}

.contact-info-block h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.font-weight-bold {
    font-weight: 600;
}

.text-navy {
    color: var(--navy);
    font-weight: 600;
}

.hours-list, .logistics-list {
    list-style: none;
}

.hours-list li, .logistics-list li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    padding: 3rem;
    border-radius: 8px;
    border-top: 5px solid var(--bronze);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    color: var(--navy);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
}

/* --- Map Section --- */
.map-section {
    width: 100%;
    display: block;
    /* Removes any default spacing under the iframe */
    line-height: 0; 
}

/* ==========================================================================
   RESERVATION PROVIDERS SPECIFICS
   ========================================================================== */

/* --- Navbar Dropdown --- */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Inherit your existing btn-primary styles for the button */
.dropbtn {
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* --- Navbar Dropdown (Navy Theme Update) --- */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    /*background-color: var(--navy);*/ /* Flipped to Navy */
    background-color: var(--text-dark);
    min-width: 200px;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1001;
    border-top: 3px solid var(--bronze);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Slightly darker shadow for depth */
}

/* 1. The class our Javascript will use to toggle the menu */
.dropdown-content.show {
    display: block !important;
}

/* 2. Disable the CSS hover rule ONLY on touch devices */
/*@media (hover: none) {
    .dropdown:hover .dropdown-content {
        display: none; 
    }
}*/
/* --- Dropdown Logic --- */

/* 1. Only allow CSS hover if the device has a physical mouse */
@media (hover: hover) and (pointer: fine) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* 2. Mobile will rely exclusively on this JS class */
.dropdown-content.show {
    display: block !important;
}


.dropdown-content .provider-link {
    color: var(--white); /* Text is now white to contrast the Navy */
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content .provider-link:hover {
    background-color: var(--bronze-light); /* Brand color on hover */
    color: var(--white); 
}

.provider-logo {
    height: 20px;
    width: auto;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* --- Dual CTA Container (Side-by-Side) --- */
.dual-cta-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap; /* Ensures they stack neatly on mobile */
}

.btn-provider {
    flex: 1; /* Makes both buttons equal width */
    min-width: 220px; /* Prevents them from getting too skinny on small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.btn-provider:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-icon {
    height: 24px;
    width: auto;
}

/* Brand specific coloring */
.btn-sevenrooms {
    background-color:black;
    color: var(--white);
}

.btn-resy {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--navy);
}

.btn-resy:hover {
    background-color: var(--off-white);
}

/* --- Daily Specials Flyer Banner --- */
.daily-specials-banner {
    background-color: var(--navy); /* Fills the space with your primary brand color */
    padding: 3rem 1rem;
    margin-bottom: 2rem; /* Separates it from the text banner below */
    text-align: center;
}

.specials-container {
    max-width: var(--container-max-width, 1200px); /* Keeps it aligned with your main content */
    margin: 0 auto;
}

.specials-subtitle {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

/* The Grid Layout (Desktop) */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal columns for each day */
    gap: 1.5rem; /* Spacing between the flyers */
    align-items: start;
}

/* Base Flyer Styling */
.flyer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
    overflow: hidden; /* Keeps the images within their framed borders */
    background-color: #111; /* Blends with image background */
    
    /* Adds a thin Bronze border like a picture frame */
    border: 1px solid var(--bronze);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* Subtle, dark shadow for depth */
}

.flyer-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hover Effect: Scale and Bronze Glow */
.flyer-card:hover {
    transform: translateY(-5px) scale(1.03); /* Lifts and slightly enlarges */
    box-shadow: 0 8px 24px rgba(0,0,0,0.6); /* Deeper shadow on lift */
    border-color: var(--white); /* Bolder border on hover */
}

/* --- Mobile / Tablet Responsiveness --- */
@media (max-width: 768px) {
    .daily-specials-banner {
        padding: 2rem 1rem;
    }

    .specials-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    /* Stack them into a clean single-column for mobile */
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Larger gap for stacking */
        max-width: 500px; /* Prevents flyers from getting too wide on phablets */
        margin: 0 auto;
    }
}


/*************************/

/* --- Lightbox Modal --- */
.lightbox-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Sits on top of your navbar */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 25, 0.9); /* A deep, semi-transparent Navy */
    backdrop-filter: blur(4px); /* Premium blur effect */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Class added by JS to trigger the fade-in */
.lightbox-modal.show-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh; /* Prevents it from spilling off the screen vertically */
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 2px solid var(--bronze);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.show-modal .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--bronze);
}

/* Ensure users know the flyers are clickable */
.flyer-card {
    cursor: pointer;
}

/* --- Sitewide Announcement Bar (WCAG AAA Contrast Fix) --- */
.announcement-bar {
    background-color: var(--navy); /* Deep dark background for maximum contrast */
    color: var(--white); /* Pure white text guarantees AAA readability */
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1000;
    /*position: relative;*/
    position: sticky;
    border-bottom: 3px solid var(--bronze); /* Keeps the bronze branding prominent */
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--bronze); /* Bronze underline highlights the CTA */
    transition: color 0.2s ease, border-color 0.2s ease;
}

.announcement-bar a:hover {
    color: var(--bronze); /* Flips to brand bronze on hover */
    border-bottom: 2px solid var(--white);
}

@media (max-width: 600px) {
    .announcement-bar {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }
    .announcement-bar a {
        display: inline-block;
        margin-top: 5px;
        margin-left: 0;
    }
}

/* --- World Cup Homepage Promo --- */
.world-cup-promo {
    background-color: var(--off-white, #f8f9fa);
    padding: 5rem 1rem;
    border-bottom: 4px solid var(--bronze);
}

.wc-container {
    max-width: var(--container-max-width, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem; /* Spacing between text and image */
}

.wc-content {
    flex: 1; /* Takes up 50% of the space */
}

.wc-media {
    flex: 1; /* Takes up 50% of the space */
}

.wc-media img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 3px solid var(--navy);
}

.wc-content h2 {
    color: var(--navy);
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    line-height: 1.1;
}

.wc-subtitle {
    font-family: var(--font-heading);
    color: var(--bronze);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wc-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.wc-features li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.wc-features li::before {
    content: '⚽'; /* Custom soccer ball bullet point */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
}

.wc-address {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

/* --- Mobile Stacking --- */
@media (max-width: 900px) {
    .wc-container {
        flex-direction: column-reverse; /* Flips the order so the image is on top */
        gap: 2.5rem;
    }
    
    .wc-content {
        text-align: center; /* Centers the text on mobile */
    }
    
    .wc-features li {
        text-align: left; /* Keeps list items readable */
    }
    
    .wc-content h2 {
        font-size: 2.2rem;
    }
}

/* --- Contact Page Dual Reservation Buttons --- */
.contact-reservations {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0,0,0,0.05); /* Creates a clean visual divider */
}

.contact-reservations h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-reservations p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.reservation-btn-group {
    display: flex;
    gap: 1rem; /* The space between the two buttons */
}

.res-btn {
    flex: 1; /* Forces both buttons to be exactly the same width */
    text-align: center;
    background-color: var(--bronze);
    color: var(--white);
    padding: 1rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.res-btn:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-3px); /* Subtle lift effect */
}

/* Mobile Stacking */
@media (max-width: 500px) {
    .reservation-btn-group {
        flex-direction: column; /* Stacks the buttons vertically on phones */
        gap: 0.8rem;
    }
}