/* FARBKONFIGURATION & ÜBERSCHREIBUNGEN
           Wir überschreiben :root, um sicherzugehen, dass Pico keine blauen Defaults lädt.
        */
        :root {
            /* --- FONTS --- */
            --pico-font-family: 'Lato', 'Helvetica Neue', Verdana, sans-serif;
            --pico-h1-font-family: 'EB Garamond', 'Lora', Georgia, serif;
            --pico-h2-font-family: 'EB Garamond', 'Lora', Georgia, serif;
            --pico-h3-font-family: 'EB Garamond', 'Lora', Georgia, serif;

            /* --- FARBPALETTE --- */
            /* Stone (Hauptfarbe/Graubraun) */
            --stone-dark: #6e6659;
            --stone-base: #8d8171;
            --stone-light: #e0dcd5;

            /* Sand/Gold (Akzent) */
            --sand-gold: #c5a065;

            /* Backgrounds */
            --bg-paper: #fdfbf7;
            --bg-card: #ffffff;

            /* --- PICO VARIABLES OVERRIDE (Damit das Blau verschwindet) --- */
            --pico-primary: var(--stone-base);
            --pico-primary-background: var(--stone-base);
            --pico-primary-hover: var(--stone-dark);
            --pico-primary-hover-background: var(--stone-dark);
            --pico-primary-focus: rgba(141, 129, 113, 0.5); /* Stone mit Transparenz */
            --pico-primary-inverse: #ffffff;
            --pico-primary-border: var(--stone-base);

            --pico-background-color: var(--bg-paper);
            --pico-card-background-color: var(--bg-card);

            /* Link Farben explizit setzen */
            --pico-color-link: var(--stone-base);
            --pico-color-link-hover: var(--stone-dark);

            /* Weichere Kanten */
            --pico-border-radius: 6px;
        }

        /* --- GLOBALES LAYOUT --- */
        body {
            color: #3d3b38; /* Soft Black */
        }

        h1 {
            font-family: var(--pico-h1-font-family);
            color: #2c2a29;
        }

        h2, h3 {
            color: #2c2a29;
        }

        /* Header Styling */
        header.main-header {
            text-align: center;
            padding: 3rem 0 2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--stone-light);
        }

        .logo-placeholder {
            width: 100px;
            height: 100px;
            background: #eee;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #999;
            font-size: 0.8rem;
            border: 1px dashed #ccc;
        }

        .intro-text {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
        }

        /* --- TAGES-STRUKTUR & KARTEN --- */
        .day-section {
            margin-bottom: 4rem;
        }

        .day-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--stone-dark);
            border-bottom: 2px solid var(--stone-light);
            display: inline-block;
            padding-bottom: 0.5rem;
            /* Zentrierung des Titels im Block */
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Die eigentliche "Karte" */
        article.program-point {
            border: 1px solid #efefef;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
            padding: 2rem;
            margin-bottom: 2rem;
            background: white;
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--sand-gold); /* Visueller Akzent links */
        }

        article.program-point > :last-child {
            margin-bottom: 0;
        }

        /* Überschriften in der Karte */
        .program-title {
            font-family: var(--pico-h2-font-family);
            color: var(--sand-gold); /* Gold wie gewünscht */
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            margin-top: 0;
            line-height: 1.2;
        }

        /* Uhrzeiten */
        .time-badge {
            display: inline-block;
            font-family: var(--pico-font-family);
            font-weight: 700;
            color: var(--stone-dark);
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Adressblock Styling */
        address {
            font-style: normal;
            background: #f9f9f9;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
            font-size: 0.95rem;
            color: #555;
        }

        address strong {
            color: #333;
            display: block;
            margin-bottom: 0.3rem;
        }

        /* --- MAP BUTTONS (Dezent & Klein) --- */
        .map-nav {
            display: flex;
            gap: 8px;
            margin-top: 0.8rem;
        }

        .btn-tiny {
            font-size: 0.7rem;
            padding: 0.3rem 0.6rem;
            border: 1px solid var(--stone-light);
            background: white;
            color: var(--stone-base);
            text-decoration: none;
            border-radius: 50px;
            text-transform: uppercase;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .btn-tiny:hover {
            border-color: var(--stone-base);
            background: var(--stone-base);
            color: white;
            text-decoration: none;
        }

        /* --- SONSTIGES --- */
        .info-block {
            margin-top: 1rem;
        }

        /* Box für wichtige Hinweise */
        .note-box {
            background-color: #fffbf0; /* Helles Gold-Gelb */
            padding: 1rem;
            border-radius: 4px;
            margin-top: 1rem;
            font-size: 0.95rem;
        }

        .note-box > :last-child {
            margin-bottom: 0;
        }

        footer {
            text-align: center;
            margin-top: 5rem;
            padding: 2rem;
            border-top: 1px solid var(--stone-light);
            color: #777;
        }

        /* =============================================
   DARK MODE OVERRIDES
   ============================================= */
        @media (prefers-color-scheme: dark) {
            :root:not([data-theme="light"]) {
                /* --- FARBPALETTE (Dark) --- */
                --stone-dark: #b8ad9e;
                --stone-base: #9e9485;
                --stone-light: #3d3a35;
                --sand-gold: #d4ad6e;
                --bg-paper: #1a1917;
                --bg-card: #242320;

                /* --- PICO VARIABLE OVERRIDES (Dark) --- */
                --pico-primary: var(--stone-base);
                --pico-primary-background: var(--stone-base);
                --pico-primary-hover: var(--stone-dark);
                --pico-primary-hover-background: var(--stone-dark);
                --pico-primary-focus: rgba(158, 148, 133, 0.4);
                --pico-primary-inverse: #1a1917;
                --pico-primary-border: var(--stone-base);
                --pico-background-color: var(--bg-paper);
                --pico-card-background-color: var(--bg-card);
                --pico-color-link: var(--stone-base);
                --pico-color-link-hover: var(--stone-dark);
            }

            /* --- TEXT & HEADINGS --- */
            body {
                color: #d5d0c8;
            }

            h1,
            h2,
            h3 {
                color: #e8e4dd;
            }

            .day-title {
                color: var(--stone-dark);
                border-bottom-color: var(--stone-light);
            }

            .intro-text {
                color: #bfb9ae;
            }

            /* --- KARTEN --- */
            article.program-point {
                background: var(--bg-card);
                border-color: #3a3835;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
                border-left-color: var(--sand-gold);
            }

            .program-title {
                color: var(--sand-gold);
            }

            .time-badge {
                color: var(--stone-dark);
            }

            /* --- ADRESSE --- */
            address {
                background: #2a2926;
                color: #b0a99e;
            }

            address strong {
                color: #d5d0c8;
            }

            /* --- HINWEIS-BOX --- */
            .note-box {
                background-color: #2c2718;
                color: #c8bfb0;
            }

            /* --- KLEINE MAP-BUTTONS --- */
            .btn-tiny {
                border-color: var(--stone-light);
                background: var(--bg-card);
                color: var(--stone-base);
            }

            .btn-tiny:hover {
                border-color: var(--stone-base);
                background: var(--stone-base);
                color: var(--bg-paper);
            }

            /* --- LOGO PLACEHOLDER --- */
            .logo-placeholder {
                background: #2a2926;
                border-color: #555;
                color: #888;
            }

            /* --- HEADER & FOOTER --- */
            header.main-header {
                border-bottom-color: var(--stone-light);
            }

            footer {
                border-top-color: var(--stone-light);
                color: #888;
            }

            .site-logo svg {
                filter: invert(1) brightness(0.85) sepia(0.15);
            }
        }

        /* --- PHOTO GRID --- */
        .photo-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        @media (min-width: 768px) {
            .photo-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .photo-grid img {
            width: 100%;
            height: auto;
            border-radius: var(--pico-border-radius);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

