/* 06 - Orange Fun / Family Day-Out (Big Banana-inspired)
   Bold, bright orange, energetic CTAs, playful tiles, angled sections */

:root {
    --color-orange: #f97316;
    --color-orange-dark: #ea580c;
    --color-orange-light: #fdba74;
    --color-yellow: #fbbf24;
    --color-navy: #000000;
    --color-navy-light: #1a1a1a;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-400: #94a3b8;
    --color-gray-600: #475569;
    --font-main: 'Nunito', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-navy);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Promo Bar */
.promo-bar {
    background: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    display: none;
}

.nav-logo img {
    height: 54px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--color-orange-light);
}

.nav-cta {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--color-orange-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.7em;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-navy-light);
    list-style: none;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
    z-index: 100;
}

.nav-dropdown:hover > .nav-submenu {
    display: block;
}

/* Invisible bridge so hover doesn't break between link and submenu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
    display: none;
}

.nav-dropdown:hover::after {
    display: block;
}

.nav-submenu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    white-space: nowrap;
    font-size: 0.875rem !important;
}

.nav-submenu li a:hover {
    background: rgba(255,255,255,0.1);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-light,
.section-header-light h2,
.section-header-light p {
    color: var(--color-white);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    background: rgba(249, 115, 22, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-tag-light {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-orange-dark);
}

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

.btn-white:hover {
    background: var(--color-gray-100);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    padding: 4rem 0 8rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    color: #000;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Home page hero h1 sits under the big brand line — keep it smaller */
.hero:not(.hero-compact) h1 {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
}

.hero-content > p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 450px;
}

.hero-content .hero-brand {
    font-size: clamp(3rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    max-width: none;
    opacity: 1;
    color: #000;
}

/* ==========================================================
   Venue pages — shared (geelong.html, daylesford.html)
   ========================================================== */

.venue-intro {
    padding: 5rem 0 4rem;
    background: var(--color-white);
}
.venue-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.venue-intro-content .section-tag {
    margin-bottom: 0.75rem;
}
.venue-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.venue-intro-content p {
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    font-weight: 500;
}
.venue-intro-image {
    position: relative;
}
.venue-intro-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    display: block;
}

/* Stats strip */
.venue-stats {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    color: var(--color-white);
}
.venue-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.venue-stat-num {
    display: block;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.venue-stat-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Visit + Map */
.venue-visit {
    padding: 5rem 0;
    background: var(--color-gray-50);
}
.venue-visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2rem;
}
.venue-info-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
}
.venue-info-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.venue-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.venue-info-content h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin-bottom: 0.35rem;
}
.venue-info-content p,
.venue-info-content a {
    color: var(--color-navy);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
}
.venue-info-content a {
    display: inline-block;
    transition: color 0.2s ease;
}
.venue-info-content a:hover {
    color: var(--color-orange);
}
.venue-info-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-orange);
    color: #fff !important;
    border-radius: 50px;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.venue-info-directions:hover {
    background: var(--color-orange-dark);
    color: #fff !important;
}

.venue-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-height: 450px;
    background: var(--color-gray-100);
}
.venue-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}

/* Cafe */
.venue-cafe {
    padding: 5rem 0;
    background: var(--color-white);
}
.venue-cafe-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 24px;
    padding: 3rem;
}
.venue-cafe-image {
    aspect-ratio: 1 / 1;
    background: var(--color-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}
.venue-cafe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.venue-cafe-content .section-tag {
    margin-bottom: 0.75rem;
    background: rgba(234, 88, 12, 0.15);
    color: var(--color-orange-dark);
}
.venue-cafe-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.venue-cafe-content p {
    color: var(--color-gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.venue-cafe-meta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-navy) !important;
    border-radius: 50px;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.venue-cafe-metas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.venue-cafe-metas .venue-cafe-meta {
    margin-top: 0;
}
.venue-cafe-meta-link {
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.venue-cafe-meta-link:hover {
    background: rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
    .venue-intro-grid,
    .venue-visit-grid,
    .venue-cafe-card {
        grid-template-columns: 1fr;
    }
    .venue-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .venue-cafe-card {
        padding: 2rem;
        gap: 2rem;
    }
    .venue-cafe-image {
        max-width: 200px;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .venue-intro {
        padding: 3.5rem 0 2.5rem;
    }
    .venue-visit,
    .venue-cafe {
        padding: 3.5rem 0;
    }
    .venue-info-card {
        padding: 1.75rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Compact hero for inner pages */
.hero-compact {
    padding: 2rem 0 4rem;
}
.hero-compact .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 700px;
}
.hero-compact h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}
.hero-compact .hero-content > p {
    max-width: none;
    font-size: 1rem;
    opacity: 0.9;
}
.hero-compact .hero-wave svg {
    height: 50px;
}
@media (max-width: 768px) {
    .hero-compact {
        padding: 1.25rem 0 1.5rem;
    }
    .hero-compact h1 {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }
    .hero-compact .hero-content > p {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    .hero-compact .hero-wave svg {
        height: 30px;
    }
}

/* Venues */
.venues {
    padding: 5rem 0;
    background: var(--color-white);
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.venue-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.venue-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
}

.venue-content {
    padding: 2rem;
}

.venue-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.venue-content > p {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.venue-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-row a {
    color: var(--color-navy);
    text-decoration: none;
}

.info-row a:hover {
    color: var(--color-orange);
}

/* Discover / What You'll Find */
.discover {
    position: relative;
    padding: 5rem 0 8rem;
    background: #000;
    overflow: hidden;
}

.discover-bg {
    position: absolute;
    inset: 0;
    background: #000;
}

.discover .container {
    position: relative;
    z-index: 1;
}

.discover .section-header h2,
.discover .section-header p {
    color: var(--color-white);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.discover-tile {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    color: var(--color-white);
    transition: all 0.3s ease;
    cursor: default;
}

.discover-tile:hover {
    background: var(--color-orange);
    transform: scale(1.05);
}

.tile-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tile-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.discover-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.discover-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Make a Day of It */
.day-out {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

.day-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.day-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-orange);
}

.day-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    transition: background 0.3s ease, transform 0.3s ease;
}
.day-card:hover .day-icon {
    background: rgba(249, 115, 22, 0.18);
    transform: scale(1.05);
}
.day-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.day-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.day-card > p {
    color: var(--color-gray-600);
    margin-bottom: 0.5rem;
}

.day-detail {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
}

/* Stallholders */
.stallholders {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.stallholders-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.stallholders .container {
    position: relative;
    z-index: 1;
}

.stallholders-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.stallholders-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.stallholders-content p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

/* News */
.news {
    padding: 5rem 0;
    background: var(--color-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--color-gray-50);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.news-card time {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-card p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: var(--color-gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faq-card p {
    color: var(--color-gray-600);
    font-size: 0.9375rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.contact .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--color-orange-light);
}

.contact .section-header h2 {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    font-style: normal;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-address {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-details p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.contact-address a,
.contact-details a {
    color: var(--color-white);
    text-decoration: none;
}

.contact-address a:hover,
.contact-details a:hover {
    color: var(--color-orange-light);
}

/* Footer */
.footer {
    background: #000;
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: none;
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-nav h4,
.footer-hours h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-orange);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================================
   Step Inside — infinite auto-scrolling photo marquee
   ======================================================== */
.marquee-section {
    padding: 5rem 0 4rem;
    background: #000;
    color: #fff;
    overflow: hidden;
}
.marquee-section .section-header h2 {
    color: #fff;
}
.marquee-section .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-orange-light);
}
.marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: marquee-scroll 80s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-item {
    flex-shrink: 0;
    width: 320px;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@keyframes marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}
@media (max-width: 600px) {
    .marquee-section {
        padding: 3.5rem 0 3rem;
    }
    .marquee-item {
        width: 240px;
        height: 180px;
    }
}

.footer-acknowledgement {
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-acknowledgement p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.65;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > p {
        max-width: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .venue-grid {
        grid-template-columns: 1fr;
    }

    .discover-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .day-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .promo-bar {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-dropdown > a::after {
        content: ' \25BE';
    }

    .nav-submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .nav-dropdown:hover > .nav-submenu {
        display: none;
    }

    .nav-submenu.active {
        display: block;
    }

    .nav-submenu li a {
        padding: 0.5rem 1.25rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .discover-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
