        :root {
            --dark-blue: #1E1B4B;
            --turquoise: #0DCCB1;
            --turquoise-dark: #0D9488;
            --magenta: #E040FB;
            --lila: #8A2BE2;
            --gold: #FCD34D;
            --text-light: #F8FAFC;
            --text-dark: #1E293B;
            --bg-light: #F1F5F9;
            --error: #EF4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ===== ANPASSUNGEN FÜR DIE NEUE STRUKTUR ===== */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #f8f9fa;
            /* Heller, freundlicher Hintergrund für die gesamte Seite */
            color: #1e293b;
            /* Dunkle, gut lesbare Schrift */
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header fixen, damit er sich vom hellen Content abhebt */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(30, 27, 75, 0.98);
            /* Dunkelblau bleibt für den Header */
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo-text {
            color: #ffffff !important;
            /* Logo-Schriftzug im Header immer weiß */
            font-weight: 700;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .nav-links a {
            color: #cbd5e1;
            /* Hellgraue Links im dunklen Header */
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--turquoise);
        }

        /* Hero Section muss ihren dunkelblauen Sci-Fi Look behalten */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 500px;
            background: radial-gradient(circle at center, #2e2a75 0%, var(--dark-blue) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1rem;
            overflow: hidden;
            color: var(--text-light);
            /* Weiße Schrift im Hero-Bereich */
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #ffffff, var(--turquoise));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            z-index: 10;
        }

        .hero p {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2rem;
            max-width: 600px;
            z-index: 10;
        }

        /* Über mich Bereich optisch abtrennen */
        .ueber-mich {
            background-color: #ffffff;
            padding: 80px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 60px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--turquoise);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        #polyCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.4;
        }

        #heroParticles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(252, 211, 77, 0.6);
            border-radius: 50%;
            animation: float linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gold);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 2;
            position: relative;
        }

        .hero p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            max-width: 800px;
            margin-bottom: 2rem;
            color: var(--text-light);
            opacity: 0.9;
            z-index: 2;
            position: relative;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--turquoise);
            color: var(--dark-blue);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(13, 204, 177, 0.3);
            z-index: 2;
            position: relative;
        }

        .cta-button:hover {
            background-color: var(--turquoise-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(13, 204, 177, 0.5);
        }

        /* ===== THEMENUSWAHL ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin: 2rem 0;
            color: var(--gold);
            font-size: 2rem;
        }

        .themenauswahl-modal {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1rem 0;
        }

        .thema-karte-modal {
            background-color: var(--bg-light);
            color: var(--text-dark);
            border-radius: 12px;
            padding: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .thema-karte-modal:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .thema-karte-modal.ki {
            border-color: var(--turquoise);
        }

        .thema-karte-modal.uv {
            border-color: var(--magenta);
        }

        .thema-karte-modal h3 {
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }

        .thema-karte-modal p {
            margin-bottom: 1rem;
            color: #64748B;
        }

        .thema-karte-modal .preis {
            font-weight: 600;
            color: var(--gold);
        }

        .thema-karte-modal .icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* ===== ÜBER MICH SECTION ===== */
        .ueber-mich {
            padding: 4rem 0;
            background-color: var(--dark-blue);
        }

        .ueber-mich-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .profil-bild-container {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .profil-bild {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .profil-bild:hover {
            transform: scale(1.05);
        }

        .schild-container {
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .schild {
            background: linear-gradient(135deg, var(--gold), #F59E0B);
            color: var(--dark-blue);
            padding: 2.5rem;
            border-radius: 12px;
            max-width: 700px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            transform: rotateY(-15deg) rotateX(5deg);
            transition: transform 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        .schild:hover {
            transform: rotateY(0deg) rotateX(0deg);
        }

        .schild::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
            pointer-events: none;
        }

        .schild-content {
            position: relative;
            z-index: 1;
        }

        .schild h3 {
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            text-align: center;
            color: var(--dark-blue);
        }

        .schild p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* ===== MODAL ===== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 1rem;
        }

        .modal {
            background-color: var(--bg-light);
            color: var(--text-dark);
            border-radius: 12px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid #E2E8F0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 1.5rem;
            color: var(--dark-blue);
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-footer {
            padding: 1.5rem;
            border-top: 1px solid #E2E8F0;
            display: flex;
            justify-content: space-between;
        }

        /* ===== TERMINAUSWAHL ===== */
        .termin-auswahl {
            margin: 1rem 0;
        }

        .termin-auswahl h3 {
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        .termin-hinweis {
            background-color: #FEF3C7;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            color: #92400E;
        }

        .termin-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .termin-button {
            background-color: var(--turquoise);
            color: var(--dark-blue);
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.2s ease;
        }

        .termin-button:hover {
            background-color: var(--turquoise-dark);
        }

        .termin-button.selected {
            background-color: var(--gold);
            color: var(--dark-blue);
        }

        /* ===== KONTAKTDATEN ===== */
        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark-blue);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #CBD5E1;
            border-radius: 8px;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--turquoise);
            box-shadow: 0 0 0 2px rgba(13, 204, 177, 0.2);
        }

        .form-group .error {
            color: var(--error);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }

        .form-group input.error-input,
        .form-group select.error-input {
            border-color: var(--error);
        }

        /* ===== ZUSAMMENFASSUNG ===== */
        .zusammenfassung {
            background-color: #F8FAFC;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
        }

        .zusammenfassung h3 {
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .zusammenfassung p {
            display: flex;
            justify-content: space-between;
            margin: 0.5rem 0;
        }

        .zusammenfassung .total {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--magenta);
        }

        /* ===== BUTTONS ===== */
        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: var(--turquoise);
            color: var(--dark-blue);
        }

        .btn-primary:hover {
            background-color: var(--turquoise-dark);
        }

        .btn-secondary {
            background-color: #E2E8F0;
            color: var(--text-dark);
        }

        .btn-secondary:hover {
            background-color: #CBD5E1;
        }

        /* ===== BESTÄTIGUNGSSSEITE ===== */
        .confirmation-page {
            display: none;
            text-align: center;
            padding: 2rem;
            background-color: var(--bg-light);
            color: var(--text-dark);
            border-radius: 12px;
            max-width: 600px;
            margin: 2rem auto;
        }

        .confirmation-page h2 {
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .confirmation-page p {
            margin-bottom: 1.5rem;
        }

        .confirmation-page .btn {
            background-color: var(--turquoise);
            color: var(--dark-blue);
        }

        /* ===== STEP INDICATOR ===== */
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .step {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #CBD5E1;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 0.5rem;
            color: #64748B;
            font-weight: 600;
        }

        .step.active {
            background-color: var(--turquoise);
            color: var(--dark-blue);
        }

        .step.completed {
            background-color: var(--gold);
            color: var(--dark-blue);
        }

        /* ===== REVEAL ANIMATION ===== */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* ===== FOOTER STYLES ===== */
        .site-footer {
            background-color: rgba(30, 27, 75, 0.95);
            color: var(--text-light);
            padding: 1.5rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(252, 211, 77, 0.1);
            font-size: 0.9rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--turquoise);
        }

        .footer-separator {
            color: var(--gold);
            opacity: 0.5;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .header {
                position: sticky;
                top: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                padding: 1rem;
            }

            .nav-links {
                display: flex;
                flex-wrap: wrap;
                gap: 0.75rem 1rem;
            }

            .nav-links a {
                font-size: 0.95rem;
            }

            .hero {
                margin-top: 0;
                min-height: 78vh;
            }

            .themenauswahl-modal {
                grid-template-columns: 1fr;
            }

            .modal {
                margin: 0.5rem;
            }

            .ueber-mich-content {
                flex-direction: column;
            }

            .profil-bild-container {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 0.5rem;
            }

            .footer-separator {
                display: none;
            }
        }
.workshop-media-carousel { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; margin:16px 0; }
.workshop-media-carousel > img, .workshop-media-carousel > iframe { flex:0 0 min(100%,560px); scroll-snap-align:start; }

/* Consent gates across public forms */
.submit-gate{position:relative;margin-top:16px}
.btn-submit:disabled,.submit-gate button:disabled{opacity:.55;cursor:not-allowed}
.consent-hint{margin:8px 0 0;color:#a13a22;font-size:.9rem;line-height:1.4}
.consent-hint.is-hidden{display:none}
