/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-sand: #FAF5EE;       /* Warm linen beach/sand color */
    --color-bg-sand-light: #FDFBF7; /* Soft sand highlight */
    
    /* Text Colors (WCAG Compliant) */
    --color-text-dark: #2A3439;     /* Deep slate blue/charcoal for premium contrast (> 10:1) */
    --color-text-muted: #4A5568;    /* Muted navy grey for subtexts (Darkened for > 4.5:1 WCAG AA) */
    
    /* Accent Colors */
    --color-terracotta: #C85230;    /* Vibrant terracotta orange (Darkened for better contrast) */
    --color-terracotta-light: rgba(200, 82, 48, 0.12);
    
    --color-peach: #D98C0B;         /* Warm sunset peach */
    --color-peach-light: rgba(217, 140, 11, 0.1);
    
    --color-sage: #53755A;          /* Lush garden sage green */
    --color-sage-light: rgba(83, 117, 90, 0.12);
    --color-garden-dark: #2F4F35;   /* Deep bold garden green for titles */
    
    --color-sunset: #D15A3D;
    --color-sunset-light: rgba(209, 90, 61, 0.15);

    /* Fonts */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-bounce: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-premium: 0 15px 35px rgba(42, 52, 57, 0.05);
    --shadow-hover: 0 25px 50px rgba(222, 107, 72, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */

.active-section .bounce {
    opacity: 1;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-sand);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow: hidden; /* Lock viewport scrolling to the container */
    width: 100vw;
    height: 100%;
}

/* Duplicate scroll-down-btn block removed – keep the refined version defined later in the file */

.scroll-down-btn .scroll-text {
    font-weight: 600;
    color: var(--color-sage);
}

.scroll-down-btn .down-arrow {
    width: 24px;
    height: 24px;
    animation: arrowBounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(5px); opacity: 0.7; }
}

/* Title first word green - specific class */
.title-word.text-garden {
    color: var(--color-garden-dark);
}
/* Remove generic first-child rule to avoid unintended styling */
/* .title-word:first-child {
    color: var(--color-garden-dark);
} */

/* ==========================================================================
   SCROLL SNAP MECHANICS
   ========================================================================== */
.scroll-container {
    height: 100dvh; /* Dynamic viewport height for mobile */
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth iOS momentum */
}

.section {
    height: 100dvh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    transition: background-color 0.8s ease;
}

/* ==========================================================================
   SECTION BACKGROUND VARIATIONS
   ========================================================================== */
#hero {
    background-color: var(--color-bg-sand);
}

#update {
    background-color: #F8EFEA; /* Soft Terracotta Sand */
}

#details {
    background-color: #EDF4EE; /* Soft Sage Mist */
}

#info {
    background-color: #FDF1EB; /* Soft Sunset Peach Blend */
}

#faq {
    background-color: #F7F3EB; /* Warm Sandy Clay tint */
}

#calendar {
    background-color: var(--color-bg-sand);
}

/* ==========================================================================
   DECORATIVE BACKGROUND ELEMENTS
   ========================================================================== */
.bg-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* Abstract gradient glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    mix-blend-mode: multiply;
    transition: transform 8s ease-in-out infinite alternate;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-peach-light) 0%, rgba(255,255,255,0) 70%);
    top: -10%;
    left: -10%;
    animation: floatOrb1 20s infinite alternate;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-sage-light) 0%, rgba(255,255,255,0) 70%);
    bottom: -15%;
    right: -10%;
    animation: floatOrb2 25s infinite alternate;
}

.orb-3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--color-terracotta-light) 0%, rgba(255,255,255,0) 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb3 18s infinite alternate;
}

/* Floating organic vector shapes */
.floating-item {
    position: absolute;
    opacity: 0.75;
    transition: transform 0.2s ease-out; /* Parallax speed transition */
}

.leaf-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 8%;
    transform: rotate(25deg);
}

.leaf-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 6%;
    transform: rotate(-45deg);
}

.leaf-3 {
    width: 140px;
    height: 140px;
    top: 40%;
    right: 3%;
    transform: rotate(10deg);
}

.cocktail-bg {
    width: 80px;
    height: 80px;
    top: 55%;
    right: 5%;
    transform: rotate(15deg);
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -40px) scale(1.15); }
}

@keyframes floatOrb3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, -60px) rotate(45deg); }
}

/* ==========================================================================
   NAVIGATION DOTS (WCAG Touch Targets)
   ========================================================================== */
.slider-nav {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
}

/* Dot buttons with 44x44px minimum touch targets */
.nav-dot {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual dot inside the touch target */
.nav-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-text-muted);
    background-color: transparent;
    transition: var(--transition-bounce);
}

.nav-dot:hover::after {
    transform: scale(1.3);
    border-color: var(--color-terracotta);
}

.nav-dot.active::after {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(222, 107, 72, 0.4);
}

/* ==========================================================================
   TYPOGRAPHY & HIGH-END ENTRY ANIMATIONS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 5vh, 2.5rem);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-dark);
}

.text-garden {
    color: var(--color-garden-dark);
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-text-dark);
}

.text-accent {
    color: var(--color-terracotta);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   ANIMATION TRIGGERS (Intersection Observer classes)
   ========================================================================== */
.animated-element {
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* Word-by-word bounce animation for titles */
.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) rotate(6deg) scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.active-section .title-word {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
}

/* Slide Up */
.slide-up {
    transform: translateY(40px);
}
.active-section .slide-up {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Right */
.slide-right {
    transform: translateX(-40px);
}
.active-section .slide-right {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Left */
.slide-left {
    transform: translateX(40px);
}
.active-section .slide-left {
    opacity: 1;
    transform: translateX(0);
}

/* Pop In / Scale Up */
.pop-in {
    transform: scale(0.9);
}
.active-section .pop-in {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-content {
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.festival-badge {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-sunset) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(222, 107, 72, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--color-text-muted);
    max-width: 600px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
}

/* Ghost Scroll Button */
.scroll-down-btn {
    background: transparent;
    border: none;
    color: var(--color-garden-dark);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
    outline: none;
}

.scroll-down-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-garden-dark);
}

.down-arrow {
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 50%;
    padding: 8px;
    color: var(--color-garden-dark);
    transition: var(--transition-bounce);
    fill: currentColor;
}

.scroll-down-btn:hover .down-arrow {
    transform: translateY(2px);
    color: var(--color-garden-dark);
    fill: currentColor;
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

.countdown {
    opacity: 1;
    transition: opacity var(--transition-smooth);
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 4rem);
    color: var(--color-garden-dark);
    margin-top: 1rem;
    letter-spacing: 1px;
    z-index: 5; /* Ensure it's on top */
}
.countdown span {
    display: inline-block;
    margin: 0 0.25rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .countdown {
        font-size: clamp(1.5rem, 6vw, 3rem);
        margin-top: 0.5rem;
    }
}

.scroll-down-btn:hover .down-arrow {
    transform: translateY(5px);
    background-color: var(--color-terracotta);
    color: white;
    box-shadow: var(--shadow-hover);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bounce {
    animation: bounce 2.5s infinite ease-in-out;
}

/* ==========================================================================
   SECTION 2: DETAILS SECTION (Wanneer & Waar)
   ========================================================================== */
.details-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.details-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.details-card:hover {
    transform: translateY(-10px) rotate(1deg);
    border-color: var(--color-terracotta);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-terracotta-light);
    color: var(--color-terracotta);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.card-subtext {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: auto;
}

/* ==========================================================================
   SECTION 3: INFO SECTION (Lekker Luchtig)
   ========================================================================== */
.centered-info {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.info-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-bubble {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    align-items: center;
}

.info-bubble:hover {
    transform: translateX(10px);
    border-color: var(--color-sage);
}

.info-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.info-svg {
    width: 24px;
    height: 24px;
}

.info-bubble h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-text-dark);
}

.info-bubble p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.warning-bubble:hover {
    border-color: var(--color-terracotta);
}

.warning-bubble .info-icon-wrapper {
    background-color: var(--color-terracotta-light);
    color: var(--color-terracotta);
}

/* ==========================================================================
   SECTION 4: FAQ SECTION (Nonsens Accordion)
   ========================================================================== */
.faq-layout {
    max-width: 800px !important;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-terracotta);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem; /* Large enough for 44px height (WCAG touch targets) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-text-dark);
    transition: var(--transition-bounce);
}

/* Plus to Minus animation */
.faq-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon::before {
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(0,0,0,0.02);
}

/* ==========================================================================
   SECTION 5: AGENDA & CALENDAR SECTION
   ========================================================================== */
.calendar-layout {
    align-items: center;
    max-width: 900px !important;
}

.calendar-card-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calendar-main-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 2px dashed rgba(42, 52, 57, 0.08);
    padding-bottom: 1.5rem;
}

.date-badge {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-sunset) 100%);
    color: white;
    width: 110px;
    height: 110px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(222, 107, 72, 0.25);
    flex-shrink: 0;
}

.date-badge .month {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.9;
}

.date-badge .day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 2px 0;
}

.date-badge .year {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.8;
}

.event-details h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.event-time, .event-loc {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.inline-svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--color-text-muted);
}

/* Calendar Button Grid */
.calendar-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.cal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.1rem; /* Meets 44px touch target easily */
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

/* Button Colors */
.google {
    background-color: #FFF2F2;
    color: #EA4335;
    border: 1.5px solid #FFD5D5;
}
.google:hover {
    background-color: #EA4335;
    color: white;
    border-color: #EA4335;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(234, 67, 53, 0.2);
}

.apple {
    background-color: #F6F6F6;
    color: #000000;
    border: 1.5px solid #E5E5E5;
}
.apple:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.outlook {
    background-color: #F0F4FC;
    color: #0078D4;
    border: 1.5px solid #D2E0F9;
}
.outlook:hover {
    background-color: #0078D4;
    color: white;
    border-color: #0078D4;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 120, 212, 0.2);
}

.yahoo {
    background-color: #FAF4FD;
    color: #6001D2;
    border: 1.5px solid #F1E2FA;
}
.yahoo:hover {
    background-color: #6001D2;
    color: white;
    border-color: #6001D2;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(96, 1, 210, 0.2);
}

.footer {
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Adaptive styling for smaller viewports)
   ========================================================================== */
@media (max-width: 768px) {
    .section {
        padding: 2.5rem 1.25rem 1.5rem 1.25rem;
    }

    .slider-nav {
        display: none; /* Hide dots on mobile to keep layout clean */
    }

    .details-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .details-card {
        padding: 1.25rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .card-icon {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
        padding: 12px;
    }

    .card-value {
        font-size: 1.15rem;
    }
    
    .card-title {
        font-size: 1.05rem;
    }

    .calendar-card-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .calendar-main-card {
        gap: 1rem;
        padding-bottom: 1.25rem;
    }

    .date-badge {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .date-badge .day {
        font-size: 1.8rem;
    }

    .event-details h3 {
        font-size: 1.4rem;
    }

    .event-time, .event-loc {
        font-size: 0.95rem;
    }

    .calendar-buttons-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .cal-btn {
        padding: 0.9rem; /* Still > 44px target on mobile! */
        font-size: 0.95rem;
    }

    .info-bubble {
        padding: 1.25rem;
        gap: 1rem;
    }

    .info-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    
    .info-svg {
        width: 20px;
        height: 20px;
    }
}

/* Height-based responsive media queries for short screens (landscape mobile / small height) */
@media (max-height: 720px) {
    .section {
        padding: 1.5rem 1.25rem 1rem 1.25rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vh, 2.5rem);
    }
    
    .section-header {
        margin-bottom: 0.75rem;
    }

    .details-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .details-card {
        padding: 0.75rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
        margin-bottom: 0;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-value {
        font-size: 1rem;
    }
    
    .card-subtext {
        display: none; /* Hide subtext on very small screens to fit date */
    }

    .info-main {
        gap: 0.5rem;
    }

    .info-bubble {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    .info-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .info-svg {
        width: 18px;
        height: 18px;
    }
    
    .info-bubble h4 {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .info-bubble p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .faq-accordion-wrapper {
        gap: 0.4rem;
    }

    .faq-trigger {
        padding: 0.75rem 1rem; /* Meets 44px touch target on short screens (0.75*16 = 12px, 12+12+20ish text > 44px) */
    }
    
    .faq-question {
        font-size: 0.95rem;
    }

    .calendar-card-container {
        padding: 1.25rem;
        gap: 1rem;
    }

    .calendar-main-card {
        padding-bottom: 0.75rem;
        gap: 1rem;
    }
    
    .date-badge {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
    
    .date-badge .day {
        font-size: 1.4rem;
    }

    .calendar-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .cal-btn {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .btn-icon {
        width: 20px;
        height: 20px;
    }
    
}

/* ==========================================================================
   CALENDAR MODAL POPUP
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(42, 52, 57, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-sand);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.modal-close-btn {
    background: var(--color-bg-sand-light);
    border: 1px solid rgba(0,0,0,0.05);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-bounce);
}

.modal-close-btn:hover {
    color: var(--color-terracotta);
    transform: rotate(90deg);
    background: white;
}

.modal-close-btn svg {
    width: 24px;
    height: 24px;
}

/* Primary Button Styling (Zet in agenda) */
.calendar-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-sunset) 100%);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(222, 107, 72, 0.3);
    transition: var(--transition-bounce);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(222, 107, 72, 0.4);
}

.primary-btn svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-bounce);
}

.primary-btn:hover svg {
    transform: translateY(3px);
}

.pulse-btn {
    animation: pulse-soft 3s infinite;
}

@keyframes pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(222, 107, 72, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(222, 107, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(222, 107, 72, 0); }
}

@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
    }
    .primary-btn {
        width: 100%;
        justify-content: center;
    }
}

