
/* Defensive reset: prevent accidental heading underlines */
h1, h2, h3, h4, h5, h6{ text-decoration: none; }


/* ===== Base link style ===== */
a{ text-decoration: none; }
a:hover, a:focus{ text-decoration: none; }

/* ===== Utility classes extracted from previous inline styles ===== */
.brand-row{ display:flex; align-items:center; gap:40px; }
.no-underline{ text-decoration:none; }
.logo-img{ height:80px; width:auto; }
/* ===== End utilities ===== */

/* ===== Extracted page styles ===== */


        /* Termina weights via Adobe Fonts kit zep6iam */
        :root{
            --font-regular: 400; /* Termina Regular */
            --font-medium:  500; /* Termina Medium */
            --font-demi:    600; /* Termina Demi */
            --font-heavy:   800; /* Termina Heavy */
        }
        .font-regular{ font-family:"termina",sans-serif; font-weight:var(--font-regular); }
        .font-medium { font-family:"termina",sans-serif; font-weight:var(--font-medium);  }
        .font-demi   { font-family:"termina",sans-serif; font-weight:var(--font-demi);    }
        .font-heavy  { font-family:"termina",sans-serif; font-weight:var(--font-heavy);   }
        /* Untertitel für Festival/Wettbewerb/Archiv (z.B. Teilnahme & Auswahl) */
        .festival-subtitle{ font-family:"termina",sans-serif; font-weight:var(--font-demi); }


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

        body {
            font-family: 'termina', sans-serif;
            background-color: #0a0a1f;
            color: #FFFAEB;
         font-weight: 400;}

        /* Header Styles */
        header {
            background-color: #0a0a1f;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #c4ff00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        

        .date {
            font-size: 32px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            letter-spacing: 2px;
         font-family: 'termina', sans-serif;}

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #FFFAEB;
            color: #FFFAEB;
            
            font-size: 18px;
            font-weight: var(--font-medium);
            transition: color 0.3s;
         font-family: 'termina', sans-serif;}

        nav a:hover,
        nav a.active {
            color: #c4ff00;
        }

        /* Hero Section */
        .hero {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .hero h1 {
            font-size: 96px;
            font-weight: var(--font-heavy);
            color: #FFFAEB;
            letter-spacing: 4px;
            font-family: 'termina', sans-serif;
        }

        /* Content Section */
        .content {
            background-color: #d4c5e8;
            padding: 80px 60px;
            color: #0a0a1f;
        }

        .content h2 {
            font-size: 48px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

        .content p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 900px;
        }

        #content {
            background-color: #d4c5e8;
            padding: 80px 60px;
            color: #0a0a1f;
        }

        #content h2 {
            font-size: 48px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

        #content h3 {
            font-size: 36px;
            font-weight: var(--font-heavy);
            margin-bottom: 20px;
            font-family: 'termina', sans-serif;
        }

        #content p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 900px;
        }

        #content ul {
            font-size: 20px;
            line-height: 1.8;
            max-width: 900px;
            list-style-type: circle;
            padding-left: 40px;
            margin-bottom: 20px;
        }

        .linktkff {
            color: #000;
            font-weight: bold;
        }


        .team-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 8px;
        }

    

        /* Footer */
        footer {
            background-color: #0a0a1f;
            padding: 60px 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo-text {
            font-size: 64px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            line-height: 1;
            font-family: 'termina', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #FFFAEB;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #c4ff00;
            border-radius: 25px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .impressum {
            color: #c4ff00;
            text-decoration: none;
            font-size: 18px;
        }

        .impressum:hover {
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 48px;
             font-family: 'termina', sans-serif; font-weight: var(--font-heavy);}

            .content {
                padding: 40px 20px;
            }

            .content h2 {
                font-size: 32px;
             font-family: 'termina', sans-serif; font-weight: var(--font-heavy);}

            .content p {
                font-size: 16px;
            }

            footer {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    



        /* Termina weights via Adobe Fonts kit zep6iam */
        :root{
            --font-regular: 400; /* Termina Regular */
            --font-medium:  500; /* Termina Medium */
            --font-demi:    600; /* Termina Demi */
            --font-heavy:   800; /* Termina Heavy */
        }
        .font-regular{ font-family:"termina",sans-serif; font-weight:var(--font-regular); }
        .font-medium { font-family:"termina",sans-serif; font-weight:var(--font-medium);  }
        .font-demi   { font-family:"termina",sans-serif; font-weight:var(--font-demi);    }
        .font-heavy  { font-family:"termina",sans-serif; font-weight:var(--font-heavy);   }
        /* Untertitel-/Beschreibungstitel (Festival/Wettbewerb/Archiv) */
        .festival-subtitle{ font-family:"termina",sans-serif; font-weight:var(--font-demi); }


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

        body {
            font-family: 'termina', sans-serif;
            background-color: #0a0a1f;
            color: #FFFAEB;
         font-weight: 400;}

        /* Header Styles */
        header {
            background-color: #0a0a1f;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #c4ff00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        

        .date {
            font-size: 32px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            letter-spacing: 2px;
         font-family: 'termina', sans-serif;}

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #FFFAEB;
            color: #FFFAEB;
            
            font-size: 18px;
            font-weight: var(--font-medium);
            transition: color 0.3s;
         font-family: 'termina', sans-serif;}

        nav a:hover,
        nav a.active {
            color: #c4ff00;
        }

        /* Hero Section */
        .hero {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .hero h1 {
            font-size: 96px;
            font-weight: var(--font-heavy);
            color: #FFFAEB;
            letter-spacing: 4px;
            font-family: 'termina', sans-serif;
        }

        /* Content Section */
        .content {
            background-color: #d4c5e8;
            padding: 80px 60px;
            color: #0a0a1f;
        }

        .year-section {
            margin-bottom: 80px;
        }

        .year-section h2 {
            font-size: 48px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

        .video-container {
            background-color: #1a1a2f;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .video-placeholder {
            width: 100%;
            height: 400px;
            background-color: #2a2a3f;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .video-placeholder-text {
            color: #c4ff00;
            font-size: 20px;
            font-style: italic;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background-color: #666;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #c4ff00;
        }

        .divider {
            height: 2px;
            background-color: #0a0a1f;
            margin: 60px 0;
        }

        .awards-section {
            margin-top: 40px;
        }

        .awards-section h3 {
            font-size: 36px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .award-item {
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
        }

        .award-item h4 {
            font-size: 20px;
            font-weight: var(--font-demi);
            margin-bottom: 8px;
            font-family: 'termina', sans-serif;
        }

        .award-item p {
            font-size: 16px;
            line-height: 1.6;
        }

        .award-item .film-title {
            font-style: italic;
            margin-bottom: 5px;
        }

        .award-item .creator {
            font-size: 14px;
            color: #333;
        }

        .retrospective-section {
            margin-top: 60px;
        }

        .retrospective-section h3 {
            font-size: 36px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

         /* Video Gallery / Bildslider */
        .video-gallery {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .video-gallery h2 {
            font-weight: var(--font-heavy);
            font-size: 48px;
            color: #FFFAEB;
            margin-bottom: 40px;
            text-align: center;
            font-family: 'termina', sans-serif;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #0a0a1f;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
        }

        .video-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    display: block;
}

        .slider-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .slider-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
        }

        .slider-track {
           
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

     .slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;  /* Geändert von 'cover' zu 'contain' */
    border-radius: 8px;
    /* background-color: #2a2a3e;  /* Optional: Hintergrundfarbe für bessere Sichtbarkeit */
        background-color: #0a0a1f;

}

        .slider-btn {
            background-color: rgba(196, 255, 0, 0.2);
            border: 2px solid #c4ff00;
            color: #c4ff00;
            font-size: 32px;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .slider-dots .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(196, 255, 0, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dots .dot.active {
            background-color: #c4ff00;
            transform: scale(1.3);
        }

        .slider-dots .dot:hover {
            background-color: #c4ff00;
        }



        /* Footer */
        footer {
            background-color: #0a0a1f;
            padding: 60px 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo-text {
            font-size: 64px;
            font-weight: bold;
            color: #c4ff00;
            line-height: 1;
            font-family: 'termina', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #FFFAEB;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #c4ff00;
            border-radius: 25px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .impressum {
            color: #c4ff00;
            text-decoration: none;
            font-size: 18px;
        }

        .impressum:hover {
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 48px;
             font-family: 'termina', sans-serif; font-weight: var(--font-heavy);}

            .content {
                padding: 40px 20px;
            }

            .awards-grid {
                grid-template-columns: 1fr;
            }

            .video-placeholder {
                height: 250px;
            }

            footer {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    



        /* Termina weights via Adobe Fonts kit zep6iam */
        :root{
            --font-regular: 400; /* Termina Regular */
            --font-medium:  500; /* Termina Medium */
            --font-demi:    600; /* Termina Demi */
            --font-heavy:   800; /* Termina Heavy */
        }
        .font-regular{ font-family:"termina",sans-serif; font-weight:var(--font-regular); }
        .font-medium { font-family:"termina",sans-serif; font-weight:var(--font-medium);  }
        .font-demi   { font-family:"termina",sans-serif; font-weight:var(--font-demi);    }
        .font-heavy  { font-family:"termina",sans-serif; font-weight:var(--font-heavy);   }
        /* Untertitel für Festival/Wettbewerb/Archiv (z.B. Teilnahme & Auswahl) */
        .festival-subtitle{ font-family:"termina",sans-serif; font-weight:var(--font-demi); }


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

        body {
            font-family: 'termina', sans-serif;
            background-color: #0a0a1f;
            color: #FFFAEB;
         font-weight: 400;}

        /* Header Styles */
        header {
            background-color: #0a0a1f;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #c4ff00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        

        .date {
            font-size: 32px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            letter-spacing: 2px;
         font-family: 'termina', sans-serif;}

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #FFFAEB;
            
            font-size: 18px;
            font-weight: var(--font-medium);
            transition: color 0.3s;
         font-family: 'termina', sans-serif;}

        nav a:hover,
        nav a.active {
            color: #c4ff00;
        }

        /* Hero Section */
        .hero {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .hero h1 {
            font-size: 96px;
            font-weight: var(--font-heavy);
            color: #FFFAEB;
            letter-spacing: 4px;
            font-family: 'termina', sans-serif;
        }

        /* Content Section */
        .content {
            background-color: #d4c5e8;
            padding: 80px 60px;
            color: #0a0a1f;
        }

        .content h2 {
            font-size: 48px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

        .content p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 900px;
        }

        .content h3 {
            font-size: 36px;
            font-weight: var(--font-heavy);
            margin-top: 60px;
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .info-box {
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 8px;
        }

        .info-box h4 {
            font-size: 24px;
            font-weight: var(--font-demi);
            margin-bottom: 15px;
            font-family: 'termina', sans-serif;
        }

        .info-box p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .single-info {
            margin-bottom: 40px;
        }

        .single-info h4 {
            font-size: 24px;
            font-weight: var(--font-demi);
            margin-bottom: 15px;
            font-family: 'termina', sans-serif;
        }

        .single-info p {
            font-size: 18px;
            line-height: 1.6;
        }

        /* Jury Section */
        .jury-section {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .jury-section h2 {
            font-size: 64px;
            font-weight: var(--font-heavy);
            color: #FFFAEB;
            margin-bottom: 50px;
            font-family: 'termina', sans-serif;
        }

        .jury-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

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

        .jury-image {
            width: 100%;
            height: 300px;
            background-color: transparent;
            border: solid 2px #c4ff00;
            border-radius: 8px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .jury-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jury-member h3 {
            font-size: 20px;
            color: #FFFAEB;
            margin-bottom: 5px;
        }

        .beruf {
            font-size: 16px;
            color: #c4ff00 !important;
        }

        .jury-member p {
            font-size: 16px;
            color: #f5f5dc;
            padding-bottom: 10px;
        }

        .jury-web {
            font-size: 16px;
            color: #f5f5dc;
            text-decoration: underline;
        }



        /* Footer */
        footer {
            background-color: #0a0a1f;
            padding: 60px 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo-text {
            font-size: 64px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            line-height: 1;
            font-family: 'termina', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #FFFAEB;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #c4ff00;
            border-radius: 25px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .impressum {
            color: #c4ff00;
            text-decoration: none;
            font-size: 18px;
        }

        footer a.impressum:hover{ text-decoration: underline !important; }


        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 48px;
             font-family: 'termina', sans-serif; font-weight: var(--font-heavy);}

            .content {
                padding: 40px 20px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .jury-grid {
                grid-template-columns: 1fr;
            }

            footer {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    


    :root{ --font-regular:400; --font-medium:500; --font-demi:600; --font-heavy:800; }
    .font-medium{ font-family:"termina",sans-serif; font-weight:var(--font-medium); }
    *{ margin:0; padding:0; box-sizing:border-box; }
    body{ font-family:"termina",sans-serif; background:#0a0a1f; color:#FFFAEB; font-weight:400; }
    header{ background:#0a0a1f; padding:20px 60px; display:flex; justify-content:space-between; align-items:center; border-bottom:2px solid #c4ff00; position:sticky; top:0; z-index:1000; }
    .date{ font-size:32px; font-weight:var(--font-heavy); color:#c4ff00; letter-spacing:2px; }
    nav{ display:flex; gap:30px; }
    nav a{ color:#FFFAEB;  font-size:18px; font-weight:var(--font-medium); transition:color .3s; }
    nav a:hover, nav a.active{ color:#c4ff00; }
    .hero{ background:#0a0a1f; padding:80px 60px; }
    .hero h1{ font-size:96px; font-weight:var(--font-heavy); color:#FFFAEB; letter-spacing:4px; }
    .content{ background:#d4c5e8; color:#0a0a1f; padding:80px 60px; }
    .content h2{ font-size:48px; font-weight:var(--font-heavy); margin-bottom:30px; }
    .content p{ font-size:20px; line-height:1.8; margin-bottom:24px; max-width:900px; }
    .content a{ color:#0a0a1f; text-decoration: none; }
    footer {
    background: #0a0a1f;
    padding: 60px 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;  /* Fügen Sie diese Zeile hinzu */
}

    .social-links{ display:flex; gap:20px; }
    .social-links a{ color:#FFFAEB; text-decoration:none; padding:10px 20px; border:2px solid #c4ff00; border-radius:25px; font-size:16px; transition:all .3s; }
    .social-links a:hover{ background:#c4ff00; color:#0a0a1f; }
    .impressum{ color:#c4ff00; text-decoration:none; font-size:18px; }
    .impressum:hover{ text-decoration: none; }
    @media (max-width:768px){
      header{ flex-direction:column; gap:20px; padding:20px; }
      nav{ flex-wrap:wrap; justify-content:center; }
      .hero h1{ font-size:48px; }
      .content{ padding:40px 20px; }
      .content h2{ font-size:32px; }
      .content p{ font-size:16px; }
      footer{ flex-direction:column; gap:30px; text-align:center; } 
      .social-links{ flex-wrap:wrap; justify-content:center; }
    }
    
  


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

        body {
            font-family: 'termina', 'Helvetica Neue', Arial, sans-serif;
            background-color: #0a0a1f;
            color: #ffffff;
         font-weight: 400;}

        
        /* Termina weight mapping */
        :root {
            --font-regular: 400;  /* Termina Regular */
            --font-medium: 500;   /* Termina Medium */
            --font-demi: 600;     /* Termina Demi */
            --font-heavy: 800;    /* Termina Heavy */
        }

        /* Utility classes */
        .font-regular { font-weight: var(--font-regular); }
        .font-medium  { font-weight: var(--font-medium);  }
        .font-demi    { font-weight: var(--font-demi);    }
        .font-heavy   { font-weight: var(--font-heavy);   }

        /* Festival/Wettbewerb/Archiv Untertitel (z.B. "Teilnahme & Auswahl") */
        .festival-subtitle { font-family: 'termina', 'Helvetica Neue', Arial, sans-serif; font-weight: var(--font-demi); }


        /* Header Styles */
        header {
            background-color: transparent;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, border-bottom 0.3s ease;
        }

        header.scrolled {
            background-color: #0a0a1f;
            border-bottom: 2px solid #c4ff00;
        }

        .date {
            font-size: 32px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            letter-spacing: 2px;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #FFFAEB;
            
            font-size: 18px;
            font-weight: var(--font-medium);
            transition: color 0.3s;
         font-family: 'termina', 'Helvetica Neue', Arial, sans-serif;}

        nav a:hover,
        nav a.active {
            color: #c4ff00;
        }

        /* Video Hero Section */
        .video-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 31, 0.3);
        }

        /* Content Section */
        .content {
            background-color: #d4c5e8;
            padding: 80px 60px;
            color: #0a0a1f;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .content-box {
            padding: 0;
        }

        .content-box h2 {
            font-size: 36px;
            font-weight: var(--font-heavy);
            margin-bottom: 20px;
            font-family: 'termina', sans-serif;
        }

        .content-box h3 {
            font-size: 28px;
            font-weight: var(--font-heavy);
            margin-bottom: 20px;
            font-family: 'termina', sans-serif;
        }

        .content-box p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
         font-family: 'termina', 'Helvetica Neue', Arial, sans-serif; font-weight: var(--font-regular);}

        .content-box button {
            background-color: transparent;
            border: 2px solid #0a0a1f;
            color: #0a0a1f;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .content-box button:hover {
            background-color: #0a0a1f;
            color: #d4c5e8;
        }

        html {
            scroll-behavior: smooth;
        }


        /* Video Gallery Section 
        .video-gallery {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .video-gallery h2 {font-weight: var(--font-heavy);
            font-size: 48px;
            color: #FFFAEB;
            margin-bottom: 40px;
            text-align: center;
            font-family: 'termina', sans-serif;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #1a1a2e;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
        }

        .video-placeholder {
            width: 100%;
            height: 500px;
            background-color: #2a2a3e;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .video-placeholder span {
            color: #c4ff00;
            font-size: 24px;
            font-style: italic;
        }

        .video-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .video-controls span {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ffffff;
            font-size: 18px;
        }

        .video-controls .dot {
            width: 12px;
            height: 12px;
            background-color: #c4ff00;
            border-radius: 50%;
        } */

        /* Video Gallery / Bildslider */
        .video-gallery {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .video-gallery h2 {
            font-weight: var(--font-heavy);
            font-size: 48px;
            color: #FFFAEB;
            margin-bottom: 40px;
            text-align: center;
            font-family: 'termina', sans-serif;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #0a0a1f;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
        }

        .slider-container {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .slider-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 8px;
        }

        .slider-track {
           
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

     .slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;  /* Geändert von 'cover' zu 'contain' */
    border-radius: 8px;
    /* background-color: #2a2a3e;  /* Optional: Hintergrundfarbe für bessere Sichtbarkeit */
        background-color: #0a0a1f;

}

        .slider-btn {
            background-color: rgba(196, 255, 0, 0.2);
            border: 2px solid #c4ff00;
            color: #c4ff00;
            font-size: 32px;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-btn:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .slider-dots .dot {
            width: 12px;
            height: 12px;
            background-color: rgba(196, 255, 0, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dots .dot.active {
            background-color: #c4ff00;
            transform: scale(1.3);
        }

        .slider-dots .dot:hover {
            background-color: #c4ff00;
        }



        /* Footer */
        footer {
            background-color: #0a0a1f;
            padding: 60px 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #FFFAEB;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #c4ff00;
            border-radius: 25px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .impressum {
            color: #c4ff00;
            text-decoration: none;
            font-size: 18px;
        }

        .impressum:hover {
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .content {
                grid-template-columns: 1fr;
                padding: 40px 20px;
            }

            .video-placeholder {
                height: 300px;
            }

            footer {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
        }
    



        /* Termina weights via Adobe Fonts kit zep6iam */
        :root{
            --font-regular: 400; /* Termina Regular */
            --font-medium:  500; /* Termina Medium */
            --font-demi:    600; /* Termina Demi */
            --font-heavy:   800; /* Termina Heavy */
        }
        .font-regular{ font-family:"termina",sans-serif; font-weight:var(--font-regular); }
        .font-medium { font-family:"termina",sans-serif; font-weight:var(--font-medium);  }
        .font-demi   { font-family:"termina",sans-serif; font-weight:var(--font-demi);    }
        .font-heavy  { font-family:"termina",sans-serif; font-weight:var(--font-heavy);   }
        /* Untertitel für Festival/Wettbewerb/Archiv (z.B. Teilnahme & Auswahl) */
        .festival-subtitle{ font-family:"termina",sans-serif; font-weight:var(--font-demi); }


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

        body {
            font-family: 'termina', sans-serif;
            background-color: #0a0a1f;
            color: #FFFAEB;
         font-weight: 400;}

        /* Header Styles */
        header {
            background-color: #0a0a1f;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #c4ff00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        

        .date {
            font-size: 32px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            letter-spacing: 2px;
         font-family: 'termina', sans-serif;}

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #FFFAEB;
            
            font-size: 18px;
            font-weight: var(--font-medium);
            transition: color 0.3s;
         font-family: 'termina', sans-serif;}

        nav a:hover,
        nav a.active {
            color: #c4ff00;
        }

        /* Hero Section */
        .hero {
            background-color: #0a0a1f;
            padding: 80px 60px;
        }

        .hero h1 {
            font-size: 96px;
            font-weight: var(--font-heavy);
            color: #FFFAEB;
            letter-spacing: 4px;
            font-family: 'termina', sans-serif;
        }

        /* Content Section */
        .content {
            background-color: #d4c5e8;
            padding: 80px 60px;
            color: #0a0a1f;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .content h2 {
            font-size: 48px;
            font-weight: var(--font-heavy);
            margin-bottom: 30px;
            font-family: 'termina', sans-serif;
            grid-column: 1 / -1;
        }

        .form-section {
            display: flex;
            flex-direction: column;
            gap: 0;
            grid-column: 1 / 3;
            grid-template-columns: 1fr 1fr;
            display: grid;
        }

        .form-info {
            padding-right: 20px;
        }

        .form-info h3 {
            font-size: 24px;
            font-weight: var(--font-demi);
            margin-bottom: 15px;
            font-family: 'termina', sans-serif;
        }

        .form-info h2 {
            font-size: 36px;
            font-weight: var(--font-heavy);
            margin-bottom: 20px;
            font-family: 'termina', sans-serif;
        }


        .form-info p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .criteria-list {
            list-style: none;
            padding: 0;
        }

        .criteria-list li {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 8px;
            padding-left: 0;
        }

        .form-container {
            background-color: /* rgba(255, 255, 255, 0.3); */
            #0a0a1f;
            padding: 40px;
            border-radius: 8px;
        }

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

        .form-group label {
            display: block;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #FFFAEB;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            border: 2px solid #0a0a1f;
            border-radius: 4px;
            background-color: #FFFAEB;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-group input::placeholder {
            color: #999;
        }

        .submit-btn {
            background-color: #c4ff00;
            color: #0a0a1f;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background-color: #0a0a1f;
            color: #c4ff00;
            border: 2px solid #c4ff00;
        }

        /* Sponsors Section */
        .sponsors {
            background-color: #0a0a1f;
            padding: 60px 60px;
        }

        .sponsors h3 {
            font-size: 28px;
            color: #c4ff00;
            margin-bottom: 40px;
            letter-spacing: 2px;
            font-family: 'termina', sans-serif;
         font-weight: var(--font-heavy);}

        .sponsor-carousel-container {
            overflow: hidden;
            padding-bottom: 40px;
            border-bottom: 2px solid #c4ff00;
            position: sticky;
            top: 0;
            z-index: 1000;
            position: relative;
        }

        .sponsor-carousel {
            display: flex;
            gap: 120px;              /* kleiner machen oder 0 */
            animation: scroll-left 30s linear infinite;
            padding-right: 40px;    /* verhindert harten Loop */
        }

        .sponsor-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-200%);
            }
        }

        .sponsor-box {
            width: 150px;
            height: 80px;
            background: transparent; /* kein Hintergrund */
            border-radius: 0;        /* keine runden Ecken */
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        

        .sponsor-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
            filter: brightness(1); /* optional: volle Helligkeit */
        }

        .sponsor-box-highlight {
            width: 170px;
            height: 90px;
            padding: 20px;
            background: transparent; /* kein Hintergrund */
            border: solid 2px #c4ff00;
            border-radius: 8px;        /* keine runden Ecken */
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sponsor-box-highlight img {
            max-width: 120%;
            max-height: 120%;
            object-fit: contain;
            display: block;
            filter: brightness(1); /* optional: volle Helligkeit */
        }
        

        /* Footer */
        footer {
            background-color: #0a0a1f;
            padding: 60px 60px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo-text {
            font-size: 64px;
            font-weight: var(--font-heavy);
            color: #c4ff00;
            line-height: 1;
            font-family: 'termina', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #FFFAEB;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #c4ff00;
            border-radius: 25px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #c4ff00;
            color: #0a0a1f;
        }

        .impressum {
            color: #c4ff00;
            text-decoration: none;
            font-size: 18px;
        }

        .impressum:hover {
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero h1 {
                font-size: 48px;
             font-family: 'termina', sans-serif; font-weight: var(--font-heavy);}

            .content {
                padding: 40px 20px;
            }

            .form-section {
                grid-template-columns: 1fr;
            }

            footer {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    



/* ===== Page-specific override: Home (index) transparent header ===== */
body.home #header{
  background-color: transparent !important;
  border-bottom-color: transparent !important;
  /* keep sticky positioning from base rules */
  transition: background-color .3s ease, border-bottom-color .3s ease;
}
body.home #header.scrolled{
  background-color: #0a0a1f !important;
  border-bottom-color: #c4ff00 !important;
}



/* ===== Home (index) transparent overlay header fix ===== */
body.home #header{
  position: fixed !important;
  left: 0; right: 0; top: 0;
  width: 100%;
  background: transparent !important;
  border-bottom-color: transparent !important;
  z-index: 1000;
}
/* When scrolled, re-add solid background + border */
body.home #header.scrolled{
  background: #0a0a1f !important;
  border-bottom-color: #c4ff00 !important;
}

/* Optional: ensure content starts under the fixed header */
body.home section:first-of-type{
  /* adjust if header is taller/shorter */
  scroll-margin-top: 120px;
  /* Only push if content is clipped. Comment out if you want hero fully under header */
  /* padding-top: 20px; */
}



/* ===== Page-specific: About - stack content vertically ===== */
body.about .content{
  display: block !important; /* override any grid/flex */
}
body.about .content h2,
body.about .content p,
body.about .content .team-image{
  margin: 0 0 24px 0;
}
body.about .content .team-image{
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
}



/* ===== Page-specific: Impressum - stack content vertically ===== */
body.impressum-page .content{
  display: block !important; /* override any grid/flex to stack items */
}
body.impressum-page .content h2,
body.impressum-page .content p{
  margin: 0 0 16px 0;
}

.content a:hover, .content a:focus{ text-decoration: none; }

nav a{ text-decoration: none; }

/* No hover underline globally */
a:hover, a:focus, a:active{ text-decoration: none !important; }



/* ===== Page-specific: Archiv - stack content vertically ===== */
body.archiv .content{
  display: block !important;
}
body.archiv .year-section,
body.archiv .awards-section,
body.archiv .retrospective-section{ 
  margin-bottom: 60px;
}
/* Awards responsive grid */
body.archiv .awards-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}



/* ===== Page-specific: Festival - stack content, responsive info-grid ===== */
body.festival .content{
  display: block !important;  /* neutralize global 2-col grid */
}
body.festival .content > *{
  margin-bottom: 24px;
}
body.festival .info-grid{ display:grid !important; grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap:40px; }
body.festival .single-info{
  margin-top: 16px;
}

@media (max-width: 900px){ body.festival .info-grid{ grid-template-columns:1fr !important; gap:24px; } }

/* Archiv: PREISTRÄGER in 2 Spalten */
body.archiv .awards-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px; /* Abstand zwischen den Karten */
}

/* Mobile: 1 Spalte */
@media (max-width: 900px){
  body.archiv .awards-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== Mobile Burger Menu ===== */
.nav-toggle{
  display:none;
  position:relative;
  width:44px; height:44px;
  border:2px solid #c4ff00;
  background:transparent;
  border-radius:12px;
  cursor:pointer;
}
.nav-toggle span{
  position:absolute; left:50%;
  width:22px; height:2px; background:#FFFAEB;
  transform:translateX(-50%);
  transition:transform .25s ease, opacity .25s ease, top .25s ease;
}
.nav-toggle span:nth-child(1){ top:14px; }
.nav-toggle span:nth-child(2){ top:21px; }
.nav-toggle span:nth-child(3){ top:28px; }

/* Icon -> X bei geöffnetem Menü */
body.nav-open .nav-toggle span:nth-child(1){ top:21px; transform:translateX(-50%) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
body.nav-open .nav-toggle span:nth-child(3){ top:21px; transform:translateX(-50%) rotate(-45deg); }

@media (max-width: 960px){
  /* Desktop-Nav wird zum Vollbild-Panel */
  nav#site-nav{
    position:fixed; inset:0;
    background:#0a0a1f;
    padding:120px 24px 24px;
    display:flex; flex-direction:column; gap:24px;
    transform:translateY(-100%);
    transition:transform .3s ease;
    /* bessere Lesbarkeit mobil */
    border-top:2px solid #c4ff00;
  }
  /* sichtbar wenn offen */
  body.nav-open nav#site-nav{ transform:translateY(0); }

  /* Button mobil einblenden */
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }

  /* größere Links mobil */
  nav#site-nav a{ font-size:22px; font-weight:600; }

  /* kein Body-Scroll im offenen Menü */
  body.nav-open{ overflow:hidden; }

  /* Optional: Desktop-Trennlinie am Header ausblenden, wenn du willst */
  /* header{ border-bottom:none; } */
}
/* === Fix: mobiler Header bleibt einzeilig (Wettbewerb) === */
@media (max-width: 960px){
  /* hält die Header-Zeile zusammen – überschreibt die alte column-Regel */
  header#header{
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    gap: 0 !important;
  }
  /* kompaktere Markenzeile */
  .brand-row{ gap: 12px; }
  .logo-img{ height: 56px; }
  .date{ font-size: 18px; letter-spacing: 1px; }
  /* falls nötig: Button rechts ausrichten */
  .nav-toggle{ margin-left: auto; }
}
@media (max-width: 960px){
  nav#site-nav{ z-index: 1000; }         /* Overlay */
  .nav-toggle{ position: relative; z-index: 1001; } /* Button darüber */
}
/* Kein horizontales Scrollen */
html, body{ max-width:100%; overflow-x:hidden; }

/* Mobile Hero: weniger Seitenabstand + H1 darf im Wort umbrechen */
@media (max-width: 600px){
  .hero{ padding: 48px 20px; }
  .hero h1{
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.05;
    overflow-wrap: anywhere;  /* bricht auch in langen Wörtern */
    word-break: break-word;
    hyphens: auto;            /* Browser mit Silbentrennung */
  }
}
/* 1) Globale Absicherung für lange Überschriften */
h1, h2 {
  overflow-wrap: anywhere;   /* bricht auch sehr lange Wörter */
  word-break: normal;
  hyphens: auto;             /* Silbentrennung, wenn möglich */
  text-wrap: balance;        /* schönere Zeilenaufteilung (PE) */
}

/* 2) Mobile Größe & Zeilenhöhe für h2 */
@media (max-width: 600px){
  h2{
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.15;
  }
}

/* === Archiv: Slider mobil kompakter === */
@media (max-width: 768px){
  /* nur auf der Archiv-Seite & im Rückblick-Block */
  .archiv .retrospective-section .slider-btn{ display:none; }           /* Pfeile ausblenden */
  .archiv .retrospective-section .slider-container{ gap: 8px; }         /* weniger Lücke seitlich */
  .archiv .retrospective-section .video-container{
    padding: 16px;                                                      /* oben/unten kleiner */
    margin-bottom: 20px;                                                /* darunter auch knapper */
  }
  .archiv .retrospective-section h3{ margin-bottom: 16px; }             /* Überschrift enger */

  /* Bildhöhe verkleinern, damit der schwarze Bereich nicht so riesig wirkt */
  .archiv .retrospective-section .slide img{
    height: 220px;         /* vorher 500px */
    object-fit: contain;   /* beibehalten, kein Beschnitt */
  }
}
/* Archiv-Slider: Touch-Geste erlaubt vertikales Scrollen der Seite */
.archiv .retrospective-section .slider-wrapper{ touch-action: pan-y; }
/* Video-hero Basissicherung */
.video-hero{ position:relative; width:100%; height:100vh; overflow:hidden; }
.video-hero video{ width:100%; height:100%; object-fit:cover; display:block; }

/* Mobile: lieber Poster statt Videoplayback */
@media (max-width:600px){
  .video-hero{ height:60vh; background:url("images/19.jpg") center/cover no-repeat; }
  .video-hero video{ display:none; }
}

/* Barrierearm: wer reduzierte Bewegung wählt, bekommt nur Poster */
@media (prefers-reduced-motion: reduce){
  #heroVideo{ display:none; }
  .video-hero{ background:url("images/19.jpg") center/cover no-repeat; }
}
/* === Home: Content mobil einspaltig === */
@media (max-width: 900px){
  body.home .content{
    display: block !important;              /* Grid/Flex neutralisieren */
    padding: 40px 20px;                     /* schmaleres Padding */
  }
  body.home .content .content-box{ 
    margin-bottom: 24px;                    /* Abstand zwischen den Boxen */
  }
}
/* === Home: Slider mobil kompakter wie im Archiv === */
@media (max-width: 768px){
  .home .video-gallery .slider-btn{ display:none; }             /* Pfeile ausblenden */
  .home .video-gallery .slider-container{ gap:8px; }            /* weniger Lücke */
  .home .video-gallery .video-container{
    padding:16px;                                               /* oben/unten kleiner */
    margin-bottom:20px;
  }
  .home .video-gallery .slide img{
    height:220px;                                               /* statt 500px */
    object-fit:contain;                                         /* kein Beschnitt */
  }
}

/* Swipe: vertikales Scrollen der Seite erlauben */
.home .video-gallery .slider-wrapper{ touch-action: pan-y; }
/* Home: H2 mobil kleiner */
@media (max-width: 700px){
  /* Content-Boxen unter dem Video */
  body.home .content .content-box h2{
    font-size: clamp(20px, 6.2vw, 26px);
    line-height: 1.15;
    text-wrap: balance;
  }

  /* "BILDERGALERIE" */
  body.home .video-gallery h2{
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.1;
    margin-bottom: 16px;
    text-wrap: balance;
  }
}

/* Mobile-Headings: 2 Zeilen, ohne Silbentrennung, flüssig groß */
@media (max-width: 430px) {
  .hero h1,
  .content h2,
  .content h3 {
    font-size: clamp(24px, 7.8vw, 34px); /* groß, aber phone-freundlich */
    line-height: 1.06;
    hyphens: none;           /* keine automatischen Trennstriche */
    word-break: normal;      /* Wörter nicht mitten drin brechen */
    overflow-wrap: normal;   /* keine Zwangsumbrüche */

    /* schönere Zeilenaufteilung (wo unterstützt) */
    text-wrap: balance;

    /* max. 2 Zeilen, sauber abgeschnitten */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}
/* === FINAL MOBILE HEADING WRAP FIX === */
@media (max-width: 700px){
  /* Gilt für alle H1–H3 */
  :is(h1, h2, h3){
    /* Trennen: erlaubt überall, aber ohne automatisch eingefügtes "-" */
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    hyphens: auto !important;   /* nur &shy; würde einen Strich setzen */

    /* nichts abschneiden */
    display: block !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
            line-clamp: unset !important;
    white-space: normal !important;

    /* hübschere Zeilenverteilung */
    text-wrap: balance;
    line-height: 1.06;
  }

  /* Für den Video-Galerie- und Sponsor*innen-Block optional etwas kleiner */
  .video-gallery h2{ font-size: clamp(22px, 7vw, 30px); }  /* war 48px */  /* :contentReference[oaicite:1]{index=1} */
  .sponsors h3     { font-size: clamp(20px, 6.5vw, 28px); } /* war 28px fix */ /* :contentReference[oaicite:2]{index=2} */
}



