:root {
    /* Color Palette - Premium Circus */
    --color-primary: #d62828;
    /* Deep Crimson */
    --color-primary-dark: #c1121f;
    --color-secondary: #fdf0d5;
    /* Vintage Cream */
    --color-accent: #f4a261;
    /* Muted Gold */
    --color-dark: #003049;
    /* Midnight Blue */
    --color-darker: #001d3d;
    /* Deep Night */
    --color-text: #333;
    --color-light-text: #f1faee;

    /* Fonts */
    --font-display: 'Rye', serif;
    /* Circus/Western Vibe */
    --font-heading: 'Playfair Display', serif;
    /* Elegant headings */
    --font-body: 'Sofia Sans', sans-serif;
    /* Clean body text */

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.3);
    --glow: 0 0 20px rgba(244, 162, 97, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-secondary);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--color-dark);
}

h1 {
    font-family: var(--font-display);
}

h2,
h3,
h4 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation - Glassmorphism */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(0, 48, 73, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: padding 0.3s ease;
}

.main-nav.scrolled {
    padding: 0.8rem 3rem;
    background: rgba(0, 48, 73, 0.95);
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--color-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    opacity: 0.9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section - Cinematic */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    height: 100vh;
    width: 100%;
    background-image: url('assets/hero-bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 48, 73, 0.3) 0%, rgba(0, 29, 61, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.4);
}

.cta-button.primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214, 40, 40, 0.6);
}

.cta-button.primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(214, 40, 40, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.cta-button.secondary:hover {
    background: var(--color-secondary);
    color: var(--color-darker);
    transform: translateY(-3px);
}

.link-arrow {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    padding-left: 5px;
    color: var(--color-primary-dark);
}

/* Button & Text Colors Utilities */
.cta-button.red {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.cta-button.red:hover {
    background-color: var(--color-primary-dark);
}

.cta-button.blue {
    background-color: var(--color-dark);
    color: #fff;
    border-color: var(--color-dark);
}

.cta-button.blue:hover {
    background-color: var(--color-darker);
}

.cta-button.white {
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.cta-button.white:hover {
    background-color: #f0f0f0;
}

.cta-button.cream {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
}

.cta-button.cream:hover {
    background-color: #eecda3;
}

/* Secondary (Outline) Overrides */
.cta-button.secondary.red {
    background: transparent;
    color: var(--color-primary);
}

.cta-button.secondary.blue {
    background: transparent;
    color: var(--color-dark);
}

.cta-button.secondary.white {
    background: transparent;
    color: #fff;
}

.cta-button.secondary.cream {
    background: transparent;
    color: var(--color-secondary);
}

.cta-button.secondary.red:hover {
    background: var(--color-primary);
    color: #fff;
}

.cta-button.secondary.blue:hover {
    background: var(--color-dark);
    color: #fff;
}

.cta-button.secondary.white:hover {
    background: #fff;
    color: var(--color-primary);
}

.cta-button.secondary.cream:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
}

/* Link Arrow Colors */
.link-arrow.white {
    color: #fff;
}

.link-arrow.cream {
    color: var(--color-secondary);
}

.link-arrow.red {
    color: var(--color-primary);
}

.link-arrow.blue {
    color: var(--color-dark);
}

/* Text Color Classes */
.text-white {
    color: #fff !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-cream {
    color: var(--color-secondary) !important;
}

.text-center {
    text-align: center !important;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.festival-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.line-1 {
    display: block;
    font-size: 3rem;
    letter-spacing: 5px;
    font-family: var(--font-heading);
    font-weight: 900;
}

.line-2 {
    display: block;
    font-size: 7rem;
    /* Big impact */
    font-family: var(--font-display);
    color: var(--color-primary);
    text-shadow: 3px 3px 0px #000, 0 0 30px rgba(214, 40, 40, 0.6);
    margin-top: -10px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 900px;
    width: 110%;
    /* Wider than container */
    margin-left: -5%;
    /* Centered */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Pulsing Date */
.date-container {
    margin-bottom: 3.5rem;
    margin-top: -1rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pulsing-date {
    font-size: 1.5rem;
    font-family: 'Alfa Slab One', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-dark);
    /* Contrast text */
    border: 2px solid #fff;
    border-radius: 50px;
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--color-accent);
    /* Solid color */
    box-shadow: 0 0 15px rgba(244, 162, 97, 0.5);
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(244, 162, 97, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(244, 162, 97, 0.8);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 15px rgba(244, 162, 97, 0.5);
        transform: scale(1);
    }
}

.hero-countdown {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.hero-countdown:hover {
    transform: scale(1.05);
}

.hero-countdown span {
    color: var(--color-accent);
    font-size: 2.2rem;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .hero-countdown {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-countdown span {
        font-size: 1.5rem;
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}


.cta-button .wp-block-button__link {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    text-decoration: none;
}

.primary .wp-block-button__link {
    background-color: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.primary:hover .wp-block-button__link {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.6);
}

.secondary .wp-block-button__link {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.secondary:hover .wp-block-button__link {
    background-color: #fff;
    color: var(--color-dark);
    transform: translateY(-3px);
}

.hero-subheading {
    margin-bottom: 2.5rem;
    /* Space below heading before buttons */
    margin-top: 1rem;
    color: #fff;
    font-size: 2rem;
    /* Larger */
    font-weight: 700;
    /* Bolder */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
    /* Fully visible */
    letter-spacing: 1px;
    font-family: var(--font-heading);
}





/* Sections General */
section {
    padding: 6rem 1.5rem;
    position: relative;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(TIMESTAMP, transparent 60%, rgba(214, 40, 40, 0.2));
    z-index: 1;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        transform: rotate(0deg);
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--color-dark);
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '★';
    /* Circus star */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-dark);
}

/* Features - Cards */
.features-section {
    background: linear-gradient(to bottom, #fdf0d5, #fff);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

/* Ensure direct children (potential wrappers) fill the grid slide */
.features-grid>* {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Remove potential extra spacing that breaks alignment */
.feature-card>*:first-child {
    margin-top: 0;
}

.feature-card>*:last-child {
    margin-bottom: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-top: 4px solid var(--color-primary);
}

.icon-circle {
    width: 100px;
    height: 100px;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background: #fff8f8;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
    /* Ensures images stay inside circle */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--color-dark);
}

/* Program - Modern Tabs and Timeline */
.program-section {
    background: #fff;
}

.program-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    border: 2px solid transparent;
    background: #f1f3f5;
    padding: 0.8rem 2.5rem;
    font-family: var(--font-heading);
    cursor: pointer;
    border-radius: 30px;
    font-weight: 700;
    color: var(--color-dark);
    transition: 0.3s;
}

.tab-btn.active {
    background: var(--color-dark);
    color: var(--color-accent);
    border-color: var(--color-dark);
    box-shadow: 0 5px 15px rgba(0, 48, 73, 0.3);
}

.program-content {
    max-width: 800px;
    margin: 0 auto;
}

/* New Program Card Design */
.schedule-item {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 8px;
    /* Clean corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Very subtle shadow */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-left: none;
    /* Removed old border */
    position: relative;
    cursor: pointer;
}

.schedule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Highlight Variations */
.schedule-item.highlight-none {
    border-left: 4px solid transparent;
    /* Keeps spacing consistent */
}

.schedule-item.highlight-orange {
    border-left: 6px solid #e36414;
    background: #fff8f0;
}

.schedule-item.highlight-red {
    border-left: 6px solid #d62828;
    background: #fff5f5;
}

.schedule-item.highlight-blue {
    border-left: 6px solid #3f88c5;
    background: #f0f7ff;
}

.schedule-item.highlight-dark-red {
    border-left: 6px solid #9a031e;
    background: #fbf0f2;
}

.schedule-item.highlight-gold {
    border-left: 6px solid #f4a261;
    background: #fef9f0;
}

/* Time Column */
.time-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 80px;
    margin-top: -3px;
    /* visual alignment with title */
}

.time-start {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.time-end {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    margin-top: 0.2rem;
}

/* Content Area */
.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.2;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

/* Category Badges */
.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    gap: 0.4rem;
}

/* Badge Colors */
.category-badge.workshop {
    background-color: #3f88c5;
    /* Blue */
}

.category-badge.performance {
    background-color: #e36414;
    /* Orange */
}

.category-badge.music {
    background-color: #9a031e;
    /* Deep Red */
}

.category-badge.other {
    background-color: #6c757d;
    /* Grey */
}

/* Add icons to badges via CSS for cleaner HTML */
.category-badge.workshop::before {
    content: "👥";
    font-size: 0.9em;
}

.category-badge.performance::before {
    content: "🎫";
    font-size: 0.9em;
}

.category-badge.music::before {
    content: "🎵";
    font-size: 0.9em;
}

.performer-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-row {
    font-size: 0.95rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.location-icon {
    font-size: 1.1rem;
    color: #ccc;
}


/* Pricing - Premium Dark */
.pricing-section {
    background: var(--color-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-section h2,
.pricing-section h3,
.pricing-section h4 {
    color: #fff !important;
}

/* Pattern Overlay */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.pricing-section .section-title {
    color: #fff;
}

.pricing-section .section-title::after {
    color: var(--color-primary);
}

.pricing-section .section-title::before {
    background: #fff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    /* align-items: stretch is default, so groups will be same height */
}

.pricing-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .pricing-container {
        flex-direction: column;
        gap: 3rem;
    }
}

.pricing-group-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    /* Rows will stretch to fill the table height */
    flex: 1;
    min-height: 80px;
    /* Ensure minimum uniform height */
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row p {
    margin: 0;
}


.pricing-row:hover:not(.header) {
    background: #f8f9fa;
}

.pricing-row.header {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    flex: 0 0 90px;
    /* Fixed height for headers to match */
    border-bottom: none;
    /* No border for header */
}

.p-item {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-darker);
}

.p-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-row.header .p-item,
.pricing-row.header .p-price {
    color: #fff;
}

.p-price-multi {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

.p-price-multi span {
    font-size: 1.1rem;
}

.pricing-row.highlight {
    background: #fff8f8;
    border-left: 4px solid var(--color-primary);
}

.pricing-row.special {
    background: var(--color-accent);
    color: #fff;
}

.pricing-row.special .p-item,
.pricing-row.special .p-price {
    color: var(--color-darker);
}

@media (max-width: 600px) {
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }

    .p-price,
    .p-price-multi {
        align-self: flex-end;
        text-align: right;
    }
}

/* Accommodation */
.accommodation-section {
    background: #fdf0d5;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.acco-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.acco-item:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-5px);
}

.acco-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.acco-img.placeholder {
    height: 200px;
    width: 100%;
    background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.acco-content {
    padding: 2rem;
}

.acco-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.price-tag {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--color-dark);
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Acco Details Override */
.acco-content p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.4;
}

/* Info Blocks */
.accommodation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
    align-items: stretch;
    /* Ensure equal height */
}

.info-block {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
    height: 100%;
    /* Fill the grid cell */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-block h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-block p {
    color: var(--color-dark);
    line-height: 1.6;
}

.gps {
    font-family: monospace;
    background: #eee;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.5rem;
}


/* Gallery */
.gallery-section {
    background: #fff;
    padding-bottom: 8rem;
}

/* Full Width Gallery Grid */
.gallery-section-full {
    background: #fff;
    padding: 0;
    margin-top: 0;
}

.accommodation-section {
    padding-bottom: 4rem !important;
    /* Add breathing room */
}

.gallery-carousel {
    position: relative;
    width: 100%;
}

.gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    touch-action: pan-y;
    /* Allow vertical scroll */
    overscroll-behavior-y: auto;
    /* Ensure vertical bubbling */
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-tile {
    flex: 0 0 25%;
    /* 4 items per view on desktop */
    scroll-snap-align: start;
    height: 70vh;
    /* Taller for impact */
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .gallery-tile {
        flex: 0 0 50%;
        /* 2 items per view on mobile */
    }
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--color-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    opacity: 0.8;
}

.carousel-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through if empty space */
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    border: 2px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: transparent;
}

/* Partners Section */
.partners-section {
    background: #ffffff;
    padding: 2rem 0 4rem;
    overflow: hidden;
}

.partners-title {
    color: #888;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* Space for arrows */
}

.partners-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.partners-track::-webkit-scrollbar {
    display: none;
}

.partner-item {
    flex: 0 0 150px;
    /* Small fixed width */
    height: 100px;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    cursor: pointer;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 80%;
    height: 80%;
    background: #ccc;
    /* Placeholder grey */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s;
    font-size: 0.8rem;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-1 {
    background: #e76f51;
}

.logo-2 {
    background: #264653;
}

.logo-3 {
    background: #2a9d8f;
}

.logo-4 {
    background: #e9c46a;
}

.logo-5 {
    background: #f4a261;
}

.logo-6 {
    background: #e63946;
}

.logo-7 {
    background: #457b9d;
}

.logo-8 {
    background: #1d3557;
}


.gallery-tile:hover {
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    transition: 0.3s ease;
    opacity: var(--overlay-opacity, 0.7);
    background-color: var(--overlay-color, rgba(0, 48, 73, 0.9));
    /* Default to dark blue */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-tile:hover .tile-overlay {
    opacity: var(--overlay-hover-opacity, 0.9);
    /* Darker on hover to make text pop */
}

/* Unique Overlay Colors */
.tile-red .tile-overlay {
    background: rgba(214, 40, 40, 0.7);
}

.tile-blue .tile-overlay {
    background: rgba(0, 48, 73, 0.7);
}

.tile-green .tile-overlay {
    background: rgba(87, 167, 115, 0.7);
}

.tile-gold .tile-overlay {
    background: rgba(244, 162, 97, 0.7);
}

.tile-overlay h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: 0.3s;
    opacity: 0;
}

.gallery-tile:hover h3 {
    transform: translateY(0);
    opacity: 1;
}

.btn-tile {
    padding: 1rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.btn-tile:hover {
    background: #fff;
    color: var(--color-dark);
}

.gallery-tile:hover .btn-tile {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}



.item-6 {
    background: #f4a261;
}

/* Footer */
footer {
    background: var(--color-darker);
    color: #ccc;
    padding: 5rem 1rem 2rem 1rem;
    border-top: 4px solid var(--color-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    text-align: left;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    text-align: center;
    line-height: 40px;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: rotate(360deg);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Media Queries */
@media(max-width: 768px) {
    .festival-title {
        font-size: 3rem;
    }

    .line-1 {
        font-size: 2rem;
    }

    .line-2 {
        font-size: 4rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }

    .hero-content {
        padding-top: 8rem;
        /* Push content down on mobile */
    }

    /* Mobile Menu Styles */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 30, 50, 0.98);
        backdrop-filter: blur(10px);
        align-items: center;
        justify-content: center;
        z-index: 999;
        gap: 2rem;
        animation: fadeIn 0.3s ease;
    }

    .nav-links.active a {
        font-size: 1.5rem;
        color: #fff;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        /* Above the menu overlay */
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
}

/* --- CCF Gallery V3 Styles --- */
.ccf-gallery-grid-container {
    margin: 40px 0;
}

.ccf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.ccf-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ccf-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Schedule Item Colors */
.schedule-item.workshop {
    border-left: 5px solid #f4a261;
    /* Orange */
}

.schedule-item.performance {
    border-left: 5px solid #e76f51;
    /* Burnt Sienna */
}

.schedule-item.music {
    border-left: 5px solid #2a9d8f;
    /* Teal */
}

.schedule-item.other {
    border-left: 5px solid #264653;
    /* Dark Blue */
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ccf-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ccf-grid-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.ccf-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.ccf-modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s;
}

.ccf-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100000;
}

.ccf-modal-close:hover,
.ccf-modal-close:focus {
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
}

/* Program Modal Close Button */
.program-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1020;
    line-height: 1;
    transition: transform 0.2s, background 0.2s;
}

.program-close:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}

.ccf-modal-prev,
.ccf-modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    z-index: 100100;
}

.ccf-modal-next {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

.ccf-modal-prev {
    left: 10px;
    border-radius: 3px 0 0 3px;
}

.ccf-modal-prev:hover,
.ccf-modal-next:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Homepage Carousel */
.ccf-home-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.ccf-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ccf-carousel-slide {
    min-width: 300px;
    width: 25%;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .ccf-carousel-slide {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .ccf-carousel-slide {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .ccf-carousel-slide {
        width: 100%;
    }
}

.ccf-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 73, var(--overlay-opacity, 0.7));
    /* Default opacity for background */
    transition: background 0.3s ease;
    /* Transition for background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.ccf-carousel-slide:hover .ccf-slide-overlay {
    background: rgba(0, 48, 73, var(--overlay-hover-opacity, 0.2));
    /* More transparent on hover */
}

.ccf-slide-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Improve readability */
}

.ccf-btn {
    padding: 10px 25px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.ccf-btn:hover {
    background: #fff;
    color: #003049;
}

.ccf-carousel-prev,
.ccf-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccf-carousel-prev:hover,
.ccf-carousel-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.ccf-carousel-prev {
    left: 20px;
}

.ccf-carousel-next {
    right: 20px;
}

/* Tabs Logic */
.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* --- NEW PRICING SECTION STYLES --- */
.pricing-container-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-col-wrapper {
    display: flex;
    flex-direction: column;
}

.pricing-table-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    /* Stretch to fill wrapper which stretches to fill grid cell */
    display: flex;
    flex-direction: column;
}

.pricing-body {
    flex: 1;
    /* Occupy remaining space */
    display: flex;
    flex-direction: column;
    /* Removed justify-content: space-between to avoid gaps */
}

.pricing-header {
    background-color: #d62828;
    /* Red */
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.2rem;
    /* Section title above table */
    color: white;
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.pricing-col-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.pricing-row-new {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    flex: 1;
    /* Expand to fill space */
}

.pricing-row-new:nth-child(even) {
    background-color: #f8f9fa;
}

.pricing-row-new:last-child {
    border-bottom: none;
}

.p-label {
    font-weight: 700;
    color: #003049;
    flex: 1;
}

.p-value {
    font-weight: 700;
    color: #d62828;
    text-align: right;
    white-space: pre-line;
    /* For multiline prices */
    margin-left: 1rem;
}

.p-value.free {
    color: #d62828;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-footer-row {
    background-color: #f4a261;
    /* Orange */
    color: #003049;
    font-weight: 900;
    text-transform: uppercase;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-section-header {
    text-align: center;
    margin-bottom: 1rem;
    color: #003049;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing-container-new {
        grid-template-columns: 1fr;
    }
}

/* --- NEW ACCOMMODATION SECTION STYLES --- */
.acco-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.acco-card-new {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acco-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.acco-img-top {
    height: 220px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.acco-body-new {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.acco-title {
    color: #d62828;
    /* Red */
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-weight: 700;
}

.acco-subtitle {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.acco-detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.acco-detail-row strong {
    color: #003049;
}

.acco-detail-row a {
    color: #d62828;
    text-decoration: underline;
    word-break: break-all;
}

.acco-icon {
    margin-right: 0.8rem;
    min-width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.acco-btn {
    display: inline-block;
    color: #d62828;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.acco-btn:hover {
    text-decoration: underline;
    color: #003049;
}

.acco-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.acco-info-card {
    border: 2px solid #d62828;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.acco-info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.acco-info-title {
    color: #d62828;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.acco-info-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #003049;
}

@media (max-width: 768px) {

    .acco-grid-new,
    .acco-info-grid {
        grid-template-columns: 1fr;
    }
}

/* --- NEW PARTNERS SECTION STYLES --- */
.partners-grid-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.partner-logo {
    width: 150px;
    height: auto;
    background: transparent !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none !important;
    border: none !important;
    filter: grayscale(100%) !important;
    opacity: 1 !important;
}

.partner-logo:hover {
    transform: scale(1.15);
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

/* --- WORK IN PROGRESS CARD STYLES --- */
.work-in-progress-card {
    border: 2px dashed #d62828;
    background: #fff;
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.wip-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d62828;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* --- PRICING FOOTER STYLES --- */
.pricing-footer {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* --- EARLY BIRD SECTION STYLES --- */
.early-bird-section {
    padding: 4rem 1.5rem;
    background-color: var(--color-secondary);
    position: relative;
}

.early-bird-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--color-accent);
}

.eb-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eb-image {
    flex: 1;
    min-height: 300px;
    position: relative;
}

.eb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eb-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.eb-text {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eb-price-list {
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.eb-price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #555;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #eee;
}

.eb-price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.eb-price-item.active {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.eb-price-item strong {
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .early-bird-card {
        flex-direction: column-reverse;
        /* Image on top on mobile */
    }

    .eb-image {
        height: 250px;
    }
}

/* --- TRANSPORT SECTION STYLES --- */
.transport-section {
    background: #fff;
    padding: 4rem 1.5rem !important;
    /* Force padding */
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transport-col h3 {
    text-transform: uppercase;
    color: #d62828;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bus-card {
    border: 2px solid #003049;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
    background: #fff;
    box-shadow: 5px 5px 0px rgba(0, 48, 73, 0.15);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* Responsive tweaks */
    max-width: 320px;
    /* Max width on mobile */
    margin-left: auto;
    margin-right: auto;
}

.badge-free {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fcbf49;
    color: #003049;
    padding: 5px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 2px solid #003049;
    transform: rotate(15deg);
    font-size: 0.85rem;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.bus-header {
    text-align: center;
    margin-bottom: 1rem;
    border-bottom: 2px dashed #eee;
    padding-bottom: 0.8rem;
}

/* Bus Type (Kyvadlo / PID) */
.bus-type {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.25rem;
    color: #d62828;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

/* Bus Route Title */
.bus-title {
    font-weight: bold;
    font-size: 1.05rem;
    color: #003049;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.bus-times {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #333;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bus-times div {
    margin: 2px 0;
}

@media (min-width: 768px) {
    .bus-card {
        max-width: 100%;
        /* Allow full width in grid columns on desktop */
    }
}

/* Transport Accordion */
.transport-accordion-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.transport-accordion-header {
    background-color: #003049;
    color: #fff;
    padding: 1rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.transport-accordion-header:hover {
    background-color: #004566;
}

.transport-accordion-header .acc-icon {
    transition: transform 0.3s ease;
}

.transport-accordion-header.active .acc-icon {
    transform: rotate(180deg);
}

.transport-accordion-content {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.transport-accordion-content.active {
    max-height: 8000px;
    /* Increased to accommodate mobile stack */
    transition: max-height 1s ease-in;
}

.transport-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .transport-grid {
        display: block;
        /* Stack on mobile */
        padding: 1rem;
    }

    .transport-col {
        margin-bottom: 2rem;
    }

    .transport-accordion-header {
        padding: 1rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .pulsing-date {
        font-size: 2.2rem;
        padding: 1rem 3rem;
    }

    .date-container {
        margin-top: -3.5rem;
        /* Move up into the arch */
        margin-bottom: 2rem;
    }

    .hero-countdown {
        margin-top: 0.5rem;
        /* Slight adjustment */
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        /* Allow content to grow */
        min-height: 100vh;
        padding-top: 100px;
        /* Push content down from fixed header */
        padding-bottom: 4rem;
        /* Ensure button isn't at the very edge */
    }

    .hero-logo {
        margin-top: 1rem;
        width: 100%;
        margin-left: 0;
    }

    .hero-logo-container {
        margin-bottom: 0.5rem;
    }

    .hero-content {
        padding: 1rem;
    }
}