/* style.css */
:root {
    /* Colors - Wellness & Relaxation */
    --clr-sage: #9baf9b;
    --clr-mint: #d4e0d4;
    --clr-wood: #c19a6b;
    --clr-wood-dark: #8b5f33;
    --clr-beige: #f5f5dc;
    --clr-beige-light: #fafaf0;

    /* Colors - Action for Kids */
    --clr-orange: #ff7f50;
    --clr-skyblue: #87ceeb;

    /* General */
    --clr-text: #2c3e50;
    --clr-text-light: #5f6a73;
    --clr-bg: #fffefe;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Layout & Animation */
    --border-radius: 16px;
    /* Unified, consistent rounded corners */
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    background-color: #e8eae6;
    /* Subtler background for the empty stripes */
    overflow-x: hidden;
    /* Prevent scrolling on mobile devices */
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-beige-light);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========================================= */
/* Global Navigation Menu                    */
/* ========================================= */
.main-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media screen and (min-width: 769px) {
    .main-nav {
        width: calc(100% - 60px);
        /* Adjusts for the boxed layout */
        max-width: 1400px;
        border-radius: 0 0 16px 16px;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-wood-dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-wood-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--clr-orange);
    background: rgba(255, 127, 80, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-wood-dark);
    cursor: pointer;
    padding: 5px;
}

@media screen and (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        border-radius: 0 0 16px 16px;
    }

    .nav-links.active {
        max-height: 500px;
        /* Large enough to show all links */
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 15px;
        font-size: 1.2rem;
    }
}

/* Boxed Layout for Desktop (Creates the stripes on left and right) */
@media screen and (min-width: 769px) {
    body {
        width: calc(100% - 60px);
        /* 30px stripe on left and right */
        max-width: 1400px;
        margin: 0 auto;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
        /* Shadow to separate from background */
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-wood-dark);
}

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

.w-100 {
    width: 100%;
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -10px;
    left: 25%;
    background-color: var(--clr-sage);
    border-radius: 2px;
}

/* Base Formats & Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--clr-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
}

.btn-primary:hover {
    background-color: #ff632e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.6);
}

.btn-secondary {
    background-color: var(--clr-skyblue);
    color: white;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.4);
}

.btn-secondary:hover {
    background-color: #6bb9d8;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.6);
}

.btn-icon-only:hover {
    transform: rotate(5deg) scale(1.1);
    /* Fun little twist for icon buttons like the '+' */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    /* Soft wellness background color before image loads */
    background: linear-gradient(135deg, var(--clr-mint), var(--clr-beige));
    /* Image placeholder pattern - Family/Nature vibe */
    background-image: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?q=80&w=2620&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.15);
    /* Glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideUp 1s ease forwards;
}

.hero .dates {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    color: var(--clr-mint);
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight-action {
    color: var(--clr-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .motto {
    font-size: 1.8rem;
    font-family: var(--font-body);
    font-weight: 200;
    /* Lighter, more elegant font weight */
    color: var(--clr-beige);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--clr-beige-light);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Arrow Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounceDown 2s infinite;
    opacity: 0.8;
    z-index: 10;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Motto Section */
.motto-section {
    background-color: white;
}

.motto-container {
    max-width: 800px;
    text-align: center;
}

.inspiring-quote {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    /* Thinner for breathing room */
    color: var(--clr-sage);
    line-height: 1.8;
    position: relative;
    padding: 0 40px;
}

.inspiring-quote::before,
.inspiring-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--clr-mint);
    position: absolute;
    height: 40px;
}

.inspiring-quote::before {
    top: -20px;
    left: 0;
}

.inspiring-quote::after {
    bottom: -40px;
    right: 0;
}

.quote-cite {
    display: block;
    font-size: 1.2rem;
    margin-top: 25px;
    color: var(--clr-text-light);
    font-style: normal;
    font-family: var(--font-body);
}

/* Venue Section */
.venue-section {
    position: relative;
    /* Idyllic Background Image */
    background-image: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?q=80&w=2674&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    /* Make text white on dark background */
}

/* Dark Overlay so text is readable over the image */
.venue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
    /* Dark blue/grey overlay */
    z-index: 0;
}

/* Ensure content sits above overlay */
.venue-section .container {
    position: relative;
    z-index: 1;
}

/* Adjust title colors specifically for this section */
.venue-section .section-title,
.venue-section .subtitle,
.venue-section h3 {
    color: var(--clr-beige-light);
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.venue-card {
    background: rgba(255, 255, 255, 0.7);
    /* Translucent white */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(0);
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.85);
    /* Slightly less transparent on hover */
}

.venue-card:hover .venue-image {
    transform: scale(1.05);
}

.venue-image {
    height: 200px;
    background-color: var(--clr-beige);
    transition: transform 0.8s ease;
    background-size: cover;
    background-position: center;
}

/* Placeholders using Unsplash Source */
.forest-walk {
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=800&auto=format&fit=crop');
}

.sports-hall {
    background-image: url('https://images.unsplash.com/photo-1542652694-40abf526446e?q=80&w=800&auto=format&fit=crop');
}

.sauna-steam {
    background-image: url('https://images.unsplash.com/photo-1596178065887-f2dfda9eddd0?q=80&w=800&auto=format&fit=crop');
}

.venue-info {
    padding: 25px;
}

.venue-info h4 {
    font-size: 1.4rem;
    color: var(--clr-wood-dark);
    margin-bottom: 10px;
}

/* Weather Section */
.weather-section {
    background-color: var(--clr-beige-light);
}

.weather-widget {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.85), rgba(94, 169, 209, 0.85));
    /* Semi-transparent gradient */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    color: white;
    max-width: 900px;
    /* Wider footprint for desktop */
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
    position: relative;
    overflow: hidden;
}

.weather-widget::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.weather-header h4 {
    color: white;
    margin: 0;
}

.live-indicator {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ffefb8;
    animation: blink 2s infinite;
}

.weather-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.temp {
    font-size: 4rem;
    font-weight: bold;
}

.weather-desc {
    font-size: 1.2rem;
}

.weather-forecast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.forecast-day {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.forecast-day:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    /* Micro-interaction */
}

.forecast-day-title {
    display: block;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.forecast-slot {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    font-size: 1.05rem;
    gap: 10px;
}

.slot-time {
    opacity: 0.9;
    text-align: left;
}

.slot-icon {
    font-size: 1.3rem;
    text-align: center;
}

.slot-temp {
    font-weight: bold;
    text-align: right;
}

/* Schedule Section */
.schedule-section {
    background-color: white;
    position: relative;
}

.schedule-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="%23ff7f50" stroke-width="2" fill="none" opacity="0.05"/></svg>');
    pointer-events: none;
}

.schedule-header,
.venue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--clr-sage);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    z-index: 0;
}

.timeline-day-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 0 30px;
    position: relative;
    z-index: 2;
}

.timeline-day-header>span {
    background: linear-gradient(135deg, var(--clr-wood), var(--clr-wood-dark));
    color: white;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(139, 95, 51, 0.4);
    border: 3px solid white;
}

.day-forecast {
    display: flex;
    gap: 15px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: var(--clr-text);
}

.forecast-part {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forecast-part i {
    color: var(--clr-orange);
    font-size: 1.1rem;
}

.forecast-part:not(:last-child)::after {
    content: '|';
    color: #e0e0e0;
    margin-left: 15px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* Removed the dot since the time badge will now replace it */
.timeline-item::after {
    display: none;
}

.timeline-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.6);
    /* Translucent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--clr-skyblue);
}

.timeline-item:nth-child(even) .timeline-content {
    border-top-color: var(--clr-sage);
}

.timeline-item.left .timeline-content {
    transform-origin: right center;
}

.timeline-item.right .timeline-content {
    transform-origin: left center;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
    margin-bottom: 5px;
    color: var(--clr-wood-dark);
}

.timeline-content .time {
    position: absolute;
    top: 21px;
    /* Align vertically with the title */
    background: white;
    color: var(--clr-wood-dark);
    border: 3px solid var(--clr-sage);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    white-space: nowrap;
}

.timeline-content .time i {
    color: var(--clr-orange);
    margin-right: 4px;
}

/* Time badge overlaps the center line */
.timeline-item.left .time {
    right: -40px;
    /* Cross the 40px padding */
    transform: translate(50%, -50%);
}

.timeline-item.right .time {
    left: -40px;
    /* Cross the 40px padding */
    transform: translate(-50%, -50%);
}

.timeline-content p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.activity-body {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 15px 0;
}

.activity-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.activity-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.activity-owner-tag {
    background-color: var(--clr-mint);
    color: var(--clr-wood-dark);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 12px;
    text-align: center;
    max-width: 80px;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.activity-desc {
    flex: 1;
}

.activity-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-small {
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 15px;
}

.btn-edit {
    background-color: var(--clr-sage);
    color: white;
}

.btn-delete {
    background-color: #ff6b6b;
    color: white;
}

.btn-edit:hover {
    background-color: var(--clr-wood);
}

.btn-delete:hover {
    background-color: #e55a5a;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--clr-text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--clr-text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--clr-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-skyblue);
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Duty Roster Section */
.duties-section {
    background-color: var(--clr-beige-light);
}

/* Location / Anfahrt Section */
.location-section {
    background-color: var(--clr-beige);
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .location-container {
        flex-direction: row;
        align-items: center;
    }

    .location-info {
        flex: 1;
        padding-right: 20px;
    }

    .location-map {
        flex: 2;
    }
}

.location-info h4 {
    color: var(--clr-wood-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.location-info p {
    font-size: 1.1rem;
    color: var(--clr-text);
    margin-bottom: 20px;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Interaktive Packliste */
.packing-section {
    background-color: var(--clr-beige-light);
}

.packing-list-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.packing-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.packing-item:last-child {
    border-bottom: none;
}

.packing-item:hover {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.packing-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid var(--clr-sage);
    border-radius: 6px;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.packing-checkbox:checked {
    background-color: var(--clr-sage);
    border-color: var(--clr-sage);
}

.packing-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.packing-label {
    font-size: 1.1rem;
    color: var(--clr-text);
    cursor: pointer;
    flex-grow: 1;
    transition: var(--transition);
}

/* Strikethrough effect when checked */
.packing-item.checked .packing-label {
    text-decoration: line-through;
    color: #a0a0a0;
}

/* Compact Schedule Summary */
.compact-schedule-section {
    background-color: var(--clr-beige);
    padding: 60px 0;
}

.compact-schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.compact-day-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--clr-sage);
}

.compact-day-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-wood-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--clr-mint);
    padding-bottom: 10px;
}

.compact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.compact-item:last-child {
    margin-bottom: 0;
}

.compact-time {
    font-weight: bold;
    color: var(--clr-orange);
    white-space: nowrap;
    min-width: 75px;
}

.compact-title {
    color: var(--clr-text);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--clr-wood-dark);
    color: var(--clr-beige);
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .hero-content {
        padding: 20px;
        width: 90%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .motto {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .inspiring-quote {
        font-size: 1.4rem;
        padding: 0 20px;
    }

    .inspiring-quote::before,
    .inspiring-quote::after {
        font-size: 2.5rem;
    }

    .weather-forecast-grid {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 18px;
        /* Was used for the old dot */
    }

    /* Position the time badge on the mobile line (line is at 31px, padding is 70px) */
    .timeline-item.left .time,
    .timeline-item.right .time {
        left: -39px;
        right: auto;
        top: 25px;
        transform: translate(-50%, -50%);
        font-size: 0.8rem;
        padding: 4px 10px;
        border-width: 2px;
    }

    .schedule-header,
    .venue-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-spacer {
        display: none !important;
    }

    .day-forecast {
        flex-direction: column;
        gap: 8px;
        border-radius: 15px;
        padding: 12px 25px;
    }

    .forecast-part {
        width: 100%;
        justify-content: space-between;
    }

    .forecast-part:not(:last-child)::after {
        display: none;
    }
}