html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

:root {
    --ea-blue: #003366;
    --ea-blue-dark: #001f3f;
    --chic-gold: #C5A065;
    --chic-cream: #F9F7F2;
    --chic-grey: #f4f4f4;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --badge-pork: #9b1b30;
    --badge-beef: #5d4037;
    --badge-fish: #0277bd;
    --badge-veg: #2e7d32;
    --badge-allergen: #616161;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--chic-cream);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

button {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 0px solid rgba(197, 160, 101, 0.3);
    transition: all 0.3s ease;
    border-top: solid var(--chic-gold) 0px;
}

.logo {
    max-width: 120px;
    width: 105px;
    min-width: 60px;
}

.logo:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: ease-in-out 0.3s;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links button {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--ea-blue);
    position: relative;
}

.nav-links button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--chic-gold);
    transition: width 0.3s;
}

.nav-links button:hover::after {
    width: 100%;
}

.nav-links button:hover {
    color: var(--chic-gold);
}

.btn-gold {
    padding: 10px 25px;
    border: 1px solid var(--chic-gold);
    background: transparent;
    color: var(--ea-blue);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--chic-gold);
    color: white;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/june-andrei-george-FOiykKJm4KU-unsplash\ \(1\).jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/pelayo-arbues-thBSJh6luBw-unsplash.jpg') center/cover no-repeat;
    }

}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-overline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--chic-gold);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-style: italic;
    font-weight: 400;
    display: block;
    font-size: 3rem;
}

.hero-date {
    font-size: 1.1rem;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 40px;
    margin-top: 2rem;
    display: inline-block;
    letter-spacing: 2px;
}

.hero-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 14px 35px;
    border: 1px solid var(--chic-gold);
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    /* Slight transparent bg */
    backdrop-filter: blur(8px);
}

.hero-btn:hover {
    background-color: var(--chic-gold);
    color: var(--ea-blue);
    border-color: var(--chic-gold);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--ea-blue);
}

.section-header .sub {
    color: var(--chic-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.section-footer {
    text-align: center;
    padding-top: 4rem;
}

.section-footer h2 {
    font-size: 2.5rem;
    color: var(--ea-blue);
}

.section-footer .sub {
    color: var(--chic-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

#welcome {
    border-top: solid rgba(197, 160, 101, 1) 2px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.split-text {
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.split-text h2 {
    font-size: 3rem;
    color: var(--ea-blue);
    margin-bottom: 1.5rem;
}

.split-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.split-text a {
    border-bottom: 1px solid var(--chic-gold);
    display: inline-block;
    width: fit-content;
    padding-bottom: 5px;
    color: var(--ea-blue);
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.split-text a:hover {
    color: var(--chic-gold);
}

.split-image {
    background: url('/assets/background-little-paris.jpeg') center/cover no-repeat;
    position: relative;
}

.info-section {
    padding: 6rem 10%;
    background-color: var(--chic-cream);
    background-position: bottom;
    background-size: cover;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chic-card {
    background: white;
    padding: 3rem 2rem;
    border: 1px solid #eee;
    transition: 0.4s ease;
    position: relative;
    text-align: center;
}

.chic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--chic-gold);
}

.chic-card i {
    font-size: 2.5rem;
    color: var(--chic-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.chic-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--ea-blue);
}

.chic-card ul {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
    padding-left: 10px;
}

.chic-card ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    color: #555;
}

.chic-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--chic-gold);
    margin-right: 10px;
    font-size: 0.8rem;
    margin-top: 3px;
}

.price {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--ea-blue-dark);
    display: block;
    margin: 0.5rem 0;
}

.schedule-section {
    padding: 6rem 10%;
    background-color: var(--ea-blue-dark);
    color: white;
    position: relative;
    width: 100%;
}

.schedule-section h2 {
    color: white;
}

.schedule-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.schedule-section p {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 400px;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: rgba(197, 160, 101, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -0.5px;
}

.container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.container::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: -6px;
    background-color: var(--chic-gold);
    border: 2px solid var(--ea-blue-dark);
    top: 24px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
    text-align: right;
}

.right {
    left: 50%;
    text-align: left;
}

.right::after {
    left: -6px;
}

.content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--chic-gold);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.6;
}

.dining-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1666032119084-82351976a922?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover fixed;
    padding: 8rem 10%;
    text-align: center;
    color: white;
    position: relative;
}

.dining-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.dining-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
    opacity: 0.9;
}

.btn-cta-menu {
    background: transparent;
    color: var(--chic-gold);
    border: 1px solid var(--chic-gold);
    font-family: 'Montserrat', sans-serif;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.btn-cta-menu:hover {
    background: var(--chic-gold);
    color: white;
}

.faq-section {
    padding: 6rem 20%;
    background-color: white;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

summary {
    padding: 1.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ea-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

summary::after {
    content: '+';
    font-family: 'Montserrat', sans-serif;
    color: var(--chic-gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

details[open] summary::after {
    transform: rotate(45deg);
}

details[open] summary {
    color: var(--chic-gold);
}

.faq-answer {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    overflow: hidden;
}

.cta-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.cta-col {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.cta-apply {
    background-color: var(--ea-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-apply::before {
    content: '\f197';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-20deg);
    left: -50px;
    bottom: -50px;
}

.cta-apply h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.cta-apply p {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 400px;
    position: relative;
}

.btn-cta-gold {
    background: var(--chic-gold);
    color: white;
    font-family: Montserrat, sans-serif;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.btn-cta-gold:hover {
    background: white;
    color: var(--ea-blue);
}

.btn-cta-schedule {
    background: var(--chic-gold);
    color: white;
    font-family: Montserrat, sans-serif;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.btn-cta-schedule:hover {
    background: white;
    color: var(--ea-blue);
}

.cta-terms {
    background-color: #f0ebe0;
    color: var(--ea-blue-dark);
}

.cta-terms h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-terms p {
    color: #555;
    margin-bottom: 2rem;
    max-width: 400px;
}

.btn-cta-outline {
    background: transparent;
    color: var(--ea-blue-dark);
    font-family: Montserrat, sans-serif;
    padding: 14px 38px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    border: 1px solid var(--ea-blue-dark);
    cursor: pointer;
    transition: 0.3s;
}

.btn-cta-outline:hover {
    background: var(--ea-blue-dark);
    color: white;
}


.maps-section {
    padding: 6rem 5%;
    background-color: var(--chic-cream);
}

.maps-section h2 {
    font-size: 2.5rem;
    color: var(--ea-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.map-container {
    position: relative;
    background: white;
    padding: 15px;
    border: 1px solid #ddd;
}

.map-frame {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
    border: 1px solid var(--chic-gold);
}

.map-container:hover .map-frame {
    filter: grayscale(0%);
}

.map-label {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--ea-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map-label span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--chic-gold);
    border: 1px solid var(--chic-gold);
    padding: 5px 12px;
}

.partners-section {
    padding: 4rem 10%;
    background-color: white;
    border-top: 1px solid #eee;
    text-align: center;
}

.partners-grid {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.partner-logo {
    background: white;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    width: 280px;
    overflow: hidden;
}

.partner-logo:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    border-top: 3px solid var(--chic-gold);
}

.partner-logo a {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(197, 160, 101, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-logo a img {
    height: 100%;
    width: 100%;
    max-width: none;
    object-fit: contain;
    transition: all 0.4s ease;
}

.partner-logo:hover a img {
    transform: scale(1.08);
}

.partner-logo span {
    margin-top: 25px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ea-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .split-section,
    .cta-split-section,
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .split-image {
        min-height: 300px;
        order: -1;
    }

    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .container::after {
        left: 23px;
    }

    .timeline::after {
        left: 31px;
    }

    .left {
        text-align: left;
    }

    .nav-links {
        display: none;
    }

    .faq-section,
    .info-section,
    .maps-section,
    .dining-section {
        padding: 4rem 5%;
    }

    .section-footer h2 {
        font-size: 1.9rem;
    }

    .section-footer a {
        font-size: small;
    }
}

@media screen and (max-width: 388px) {
    .btn-cta-schedule {
        font-size: 0.8rem;
        width: 90%;
    }
}

/* --- MENU STYLES --- */
.menu-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 31, 63, 0.6), rgba(0, 31, 63, 0.8)), url('https://images.unsplash.com/photo-1636835369131-e79f1266b599?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.menu-hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.menu-hero h1 span {
    color: var(--chic-gold);
    font-style: italic;
}

.menu-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 1px;
}

.menu-container {
    max-width: 1000px;
    margin: -50px auto 0 auto;
    /* Removed bottom margin to flow into maps */
    background: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-top: 5px solid var(--chic-gold);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #999;
    padding-bottom: 10px;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--chic-gold);
}

.tab-btn.active {
    color: var(--ea-blue);
    font-weight: 700;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--chic-gold);
}

.menu-section {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.menu-section.active-content {
    display: block;
}

.day-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.day-header h3 {
    font-size: 2rem;
    color: var(--ea-blue);
    margin-bottom: 0.5rem;
}

.day-header span {
    color: var(--chic-gold);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.meal-group {
    margin-bottom: 2.5rem;
}

.meal-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ea-blue-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.meal-name::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.meal-name i {
    color: var(--chic-gold);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 10px 10px;
    border-left: 2px solid transparent;
    transition: 0.3s;
    flex-wrap: wrap;
}

.menu-item:hover {
    border-left: 2px solid var(--chic-gold);
    background: #fcfcfc;
}

.dish-content {
    display: flex;
    flex-direction: column;
}

.dish-name {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
}

.dish-meta {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* BADGES */
.badges-container {
    display: flex;
    gap: 5px;
    margin-left: auto;
    padding-left: 10px;
}

.badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 4px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.b-pork {
    background-color: var(--badge-pork);
}

.b-beef {
    background-color: var(--badge-beef);
}

.b-fish {
    background-color: var(--badge-fish);
}

.b-veg {
    background-color: var(--badge-veg);
}

.b-all {
    background-color: var(--badge-allergen);
}

.highlight-dish {
    background-color: var(--chic-cream);
    border-radius: 4px;
    border-left: 2px solid var(--chic-gold);
}

.highlight-dish .dish-name {
    color: var(--ea-blue);
    font-weight: 700;
}

.legend-section {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: 4px solid var(--chic-gold);
}

.legend-title {
    font-size: 1.5rem;
    color: var(--ea-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.legend-col h4 {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--chic-gold);
    letter-spacing: 1px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #555;
}

.legend-badge {
    width: 60px;
    text-align: center;
    margin-right: 15px;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .menu-hero h1 {
        font-size: 2.5rem;
    }

    .menu-container {
        margin: 0;
        padding: 2rem 5%;
    }

    .menu-tabs {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .tab-btn {
        flex: 0 0 auto;
    }

    .legend-grid {
        grid-template-columns: 1fr;
    }

    .maps-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RULES STYLES --- */

.rules-hero {
    height: 50vh;
    /* Official/Architectural Vibe */
    background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), url('https://images.unsplash.com/photo-1603796846097-bee99e4a601f?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') bottom/cover fixed no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 50px;
}

.rules-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.rules-hero h1 span {
    color: var(--chic-gold);
    font-style: italic;
}

.rules-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.content-container {
    max-width: 900px;
    margin: -50px auto 4rem auto;
    background: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 4rem;
    border-top: 5px solid var(--chic-gold);
}

.rule-section {
    margin-bottom: 3.5rem;
}

.rule-section h2 {
    font-size: 2rem;
    color: var(--ea-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.rule-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--chic-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.rule-section p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

.rule-section ul,
.rule-section ol {
    margin-left: 20px;
    margin-bottom: 1.5rem;
    color: #555;
}

.rule-section li {
    margin-bottom: 0.8rem;
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2rem;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid var(--chic-gold);
    border-radius: 50%;
}

.timeline-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 22px;
    width: 1px;
    height: calc(100% + 10px);
    background: #eee;
}

.timeline-list li:last-child::after {
    display: none;
}

.date-highlight {
    display: block;
    color: var(--ea-blue);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.9rem;
    border: 1px solid #eee;
}

.rules-table th {
    background-color: var(--ea-blue);
    color: white;
    padding: 15px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rules-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.rules-table tr:nth-child(even) {
    background-color: var(--chic-grey);
}

.rules-table tr:last-child td {
    font-weight: 700;
    color: var(--ea-blue);
    border-bottom: 3px solid var(--chic-gold);
}

.contact-box {
    background-color: var(--chic-cream);
    padding: 1.5rem;
    border-left: 4px solid var(--chic-gold);
    margin: 2rem 0;
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
}

.contact-box a {
    color: var(--ea-blue);
    font-weight: 600;
    text-decoration: underline;
}

footer {
    background-color: var(--ea-blue-dark);
    color: #777;
    padding: 4rem 5%;
    text-align: center;
    border-top: 4px solid var(--chic-gold);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.footer-logo:hover {
    color: var(--chic-gold);
    transform: translateY(-3px);
    display: inline-block;
}

.footer-info {
    font-family: 'Playfair Display', serif;
    cursor: default;
    color: var(--chic-cream);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.socials {
    margin-bottom: 1.5rem;
}

.socials a {
    color: white;
    margin: 0 15px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--chic-gold);
    transform: translateY(-3px);
    display: inline-block;
}

.footer-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .rules-hero h1 {
        font-size: 2.5rem;
    }

    .content-container {
        padding: 2rem 1.5rem;
        margin-top: 0;
    }

    .rules-table {
        font-size: 0.8rem;
    }

    .rules-table th,
    .rules-table td {
        padding: 10px;
    }
}

.contact-box {
    background-color: var(--chic-cream);
    padding: 1.5rem;
    border-left: 4px solid var(--chic-gold);
    margin: 2rem 0;
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
}

.contact-box a {
    color: var(--ea-blue);
    font-weight: 600;
    text-decoration: underline;
}

.download-box {
    background-color: var(--ea-blue-dark);
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 4px;
    margin-top: 4rem;
}

.download-box h2 {
    color: white;
    border-bottom: none;
    margin-bottom: 1rem;
}

.download-box p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--chic-gold);
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    transition: 0.3s;
    text-decoration: none;
}

.btn-download:hover {
    background-color: var(--chic-cream);
    color: var(--ea-blue-dark);
}

.page-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 31, 63, 0.6), rgba(0, 31, 63, 0.8)), url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?q=80&w=2068&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.page-hero h1 span {
    color: var(--chic-gold);
    font-style: italic;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 1px;
}

.schedule-container {
    max-width: 1000px;
    margin: -50px auto 4rem auto;
    background: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-top: 5px solid var(--chic-gold);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.tab-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #999;
    padding-bottom: 10px;
    transition: 0.3s;
    position: relative;
}

.tab-btn.active {
    color: var(--ea-blue);
    font-weight: 700;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--chic-gold);
}

.day-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.day-content.active-content {
    display: block;
}

.day-header {
    text-align: center;
    margin-bottom: 2rem;
}

.day-header h3 {
    font-size: 2rem;
    color: var(--ea-blue);
    margin-bottom: 0;
}

.day-header span {
    color: var(--chic-gold);
    font-family: 'Montserrat';
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.time-slot {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    border-left: 2px solid #eee;
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
}

.time-slot::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--chic-gold);
    border-radius: 50%;
}

.slot-time {
    width: 120px;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--chic-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.slot-info {
    flex-grow: 1;
}

.slot-title {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--ea-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.slot-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.type-bm {
    color: var(--ea-blue);
}

/* Business */
.type-social {
    color: #9b1b30;
}

/* Party/Dinner */
.type-food {
    color: #2e7d32;
}

/* Meals */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .schedule-container {
        margin: 0;
        padding: 2rem 5%;
    }

    .schedule-tabs {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .time-slot {
        flex-direction: column;
    }

    .slot-time {
        margin-bottom: 5px;
    }
}