/* ================================================= */
/* ROOT */
/* ================================================= */

:root {
    --color-cream: #f6e3c5;
    --color-black: #1c1a1a;
    --color-red: #e15b4d;
    --color-red-dark: #9c332b;
    --color-pink: #ff9c85;

    --shadow-standard: 0 8px 20px rgba(0, 0, 0, 0.18);
    --shadow: var(--shadow-standard);

    --font-display: "Baloo 2", sans-serif;
}

/* ================================================= */
/* RESET */
/* ================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, sans-serif;
    color: var(--color-black);
    line-height: 1.6;

    background-color: var(--color-cream);

    /*
       Weniger, kleinere und dunklere Strahlenverzierungen
       über die Seite verteilt.
    */
    background-image: repeating-conic-gradient(
            from 10deg at 8% 18%,
            rgba(156, 51, 43, 0.05) 0deg 8deg,
            transparent 8deg 16deg
        ),
        repeating-conic-gradient(from -8deg at 92% 38%, rgba(156, 51, 43, 0.045) 0deg 8deg, transparent 8deg 16deg),
        repeating-conic-gradient(from 5deg at 50% 84%, rgba(156, 51, 43, 0.04) 0deg 8deg, transparent 8deg 16deg);

    background-size:
        420px 420px,
        360px 360px,
        320px 320px;

    background-repeat: no-repeat;
    background-position:
        -80px 90px,
        calc(100% + 40px) 180px,
        center calc(100% - 120px);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ================================================= */
/* TABLET-RANDABSTAND (601px – 1024px) */
/* ================================================= */
/*
   Viele Sektionen verlassen sich auf max-width + auto-Margin
   zur Zentrierung, ohne eigenen Rand-Abstand. Auf Desktop-Breiten
   greift die max-width, auf Handys gibt es eigene Regeln – dazwischen
   (z.B. iPad) klebt der Inhalt sonst am Bildschirmrand.
   Die Kopfzeile bekommt einen negativen Rand, damit sie weiterhin
   randlos bleibt.
*/
:root {
    --tablet-gutter: clamp(20px, 3.5vw, 40px);
}

@media (min-width: 601px) and (max-width: 1300px) {
    body {
        padding-left: var(--tablet-gutter);
        padding-right: var(--tablet-gutter);
    }

    header,
    footer {
        margin-left: calc(var(--tablet-gutter) * -1);
        margin-right: calc(var(--tablet-gutter) * -1);
    }
}



header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 105px;
    padding: 0 35px;

    background: var(--color-black);
    border-bottom: 8px solid var(--color-red-dark);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    width: 82px;
    height: 82px;

    border-radius: 50%;
    object-fit: cover;

    box-shadow: var(--shadow);
    transition: 0.35s;
}

.brand-logo:hover {
    transform: rotate(-6deg) scale(1.05);
}

.brand {
    color: var(--color-cream);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ================================================= */
/* NAVIGATION */
/* ================================================= */

nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    position: relative;

    padding: 10px 0;

    color: var(--color-cream);
    font-weight: 600;

    transition: 0.25s;
}

nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--color-pink);

    transition: 0.25s;
}

nav a:hover {
    color: var(--color-pink);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--color-cream);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

/* ================================================= */
/* HERO */
/* ================================================= */

.hero {
    --hero-angle: -3deg;

    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 105px);
    min-height: calc(100svh - 105px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 35px 30px 45px;

    background: var(--color-cream);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 1250px;
}

.hero-logo {
    width: 240px;
    margin: 0 auto 30px;
}

.hero-subtitle {
    display: block;

    margin: 0 auto 22px;

    color: var(--color-red-dark);

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    transform: rotate(var(--hero-angle));
}

.hero-title {
    display: block;

    width: min(950px, calc(100% - 80px));
    margin: 0 auto;
    padding: 34px 50px;

    background: var(--color-red-dark);
    border-radius: 28px;

    box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.15);

    transform: rotate(var(--hero-angle));
}

.hero-title h1 {
    margin: 0;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    line-height: 0.92;

    text-shadow: 5px 5px 0 var(--color-red);
}

.hero-date {
    display: block;

    width: fit-content;
    max-width: calc(100% - 40px);
    margin: 38px auto 0;

    color: var(--color-black);

    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.4;

    transform: rotate(var(--hero-angle));
}

/* ================================================= */
/* HERO-DEKORATION */
/* ================================================= */

.hero::before {
    content: "";

    position: absolute;
    top: 19px;
    left: -177px;
    z-index: 1;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(156, 51, 43, 0.13) 1deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    right: -166px;
    bottom: 32px;
    z-index: 1;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(156, 51, 43, 0.13) 1deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

/* Sterne und Eintritt-frei-Symbol ausblenden */

.hero-stars,
.hero-ticket {
    display: none;
}

/* ================================================= */
/* INFO-KACHELN – ÜBERARBEITETE VERSION */
/* ================================================= */

.info-box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;

    width: 100%;
    max-width: 1450px;
    margin: 45px auto 65px;
}

.info-box > div {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 66px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    align-items: center;

    min-height: 145px;
    padding: 25px 26px;

    color: var(--color-black);
    background: white;

    border: 4px solid var(--color-red-dark);
    border-radius: 24px;

    text-align: left;

    box-shadow:
        8px 8px 0 rgba(156, 51, 43, 0.16),
        0 8px 20px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s,
        box-shadow 0.3s,
        background 0.3s;
}

/* Kleine rote Fläche oben */

.info-box > div::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 8px;

    background: linear-gradient(90deg, var(--color-red-dark), var(--color-red));
}

/* Icon-Kreis */

.info-box > div::before {
    grid-column: 1;
    grid-row: 1 / 3;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 62px;
    height: 62px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 18px;

    font-size: 1.9rem;

    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.14);

    transform: rotate(-4deg);
}

/* Unterschiedliche Symbole */

.info-box > div:nth-child(1)::before {
    content: "📍";
}

.info-box > div:nth-child(2)::before {
    content: "📅";
}

.info-box > div:nth-child(3)::before {
    content: "🕙";
}

.info-box > div:nth-child(4)::before {
    content: "🎟";
}

.info-box > div:hover {
    background: var(--color-cream);

    box-shadow:
        11px 11px 0 rgba(156, 51, 43, 0.22),
        0 12px 24px rgba(0, 0, 0, 0.1);

    transform: translateY(-7px);
}

.info-box h3 {
    grid-column: 2;
    grid-row: 1;

    margin: 0 0 5px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.15;
}

.info-box p {
    grid-column: 2;
    grid-row: 2;

    margin: 0;

    color: var(--color-black);

    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ================================================= */
/* INFO-KACHELN RESPONSIVE */
/* ================================================= */

@media (max-width: 1200px) {
    .info-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 950px;
    }
}

@media (max-width: 650px) {
    .info-box {
        grid-template-columns: 1fr;
        gap: 18px;

        margin-top: 30px;
    }

    .info-box > div {
        grid-template-columns: 56px 1fr;

        min-height: 125px;
        padding: 22px 20px;
    }

    .info-box > div::before {
        width: 52px;
        height: 52px;

        border-radius: 15px;

        font-size: 1.55rem;
    }

    .info-box h3 {
        font-size: 1.4rem;
    }

    .info-box p {
        font-size: 0.93rem;
    }
}

/* ================================================= */
/* COUNTDOWN */
/* ================================================= */

.countdown {
    position: relative;
    overflow: hidden;

    width: 100%;
    max-width: 1450px;
    margin: 60px auto;
    padding: 42px 45px 48px;

    color: var(--color-cream);
    background: var(--color-black);

    border-top: 8px solid var(--color-red-dark);
    border-radius: 30px;

    text-align: center;

    box-shadow: var(--shadow);
}

.countdown::after {
    content: "";

    position: absolute;
    right: -83px;
    bottom: -93px;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(255, 255, 255, 0.1) 0deg 8deg, transparent 7deg 15deg);

    pointer-events: none;
}

.countdown-label {
    position: relative;
    z-index: 2;

    margin-bottom: 4px;

    color: var(--color-pink);

    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.countdown h2 {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    text-align: center;
}

.countdown-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 18px;

    max-width: 950px;
    margin: auto;
}

.countdown-unit {
    padding: 20px 15px;

    color: var(--color-red-dark);
    background: var(--color-cream);

    border: 4px solid var(--color-red-dark);
    border-radius: 20px;

    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);

    transition: transform 0.3s;
}

.countdown-unit:hover {
    transform: translateY(-5px);
}

.countdown-unit strong {
    display: block;

    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.3rem);
    line-height: 1;
}

.countdown-unit span {
    display: block;

    margin-top: 7px;

    color: var(--color-black);

    font-size: 0.95rem;
    font-weight: 600;
}

.countdown-message {
    grid-column: 1 / -1;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
}

@media (max-width: 750px) {
    .countdown {
        padding: 36px 22px 40px;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, minmax(110px, 1fr));
    }
}

@media (max-width: 420px) {
    .countdown-grid {
        gap: 12px;
    }

    .countdown-unit {
        padding: 16px 8px;
    }

    .countdown-unit span {
        font-size: 0.82rem;
    }
}

/* ================================================= */
/* WILLKOMMEN */
/* ================================================= */

.welcome {
    position: relative;
    overflow: hidden;

    max-width: 1350px;
    margin: 70px auto;
    padding: 45px 55px 40px;

    background: linear-gradient(135deg, white 0%, white 85%, rgba(225, 91, 77, 0.08) 85%, rgba(225, 91, 77, 0.08) 100%);

    border: 4px solid var(--color-red-dark);
    border-radius: 28px;

    box-shadow: 12px 12px 0 var(--color-red-dark);
}

/* Roter Dekorationsstreifen oben */

.welcome::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 10px;

    background: repeating-linear-gradient(131deg, var(--color-red-dark) 0 22px, var(--color-red) 22px 45px);
}

/* Dezente Jahreszahl auf der rechten Seite */

.welcome::after {
    position: absolute;
    top: 50%;
    right: 35px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;

    opacity: 0.07;

    transform: translateY(-50%) rotate(-90deg);

    pointer-events: none;
}

.welcome h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.welcome p {
    position: relative;
    z-index: 2;

    max-width: 1100px;

    font-size: 1.08rem;
    line-height: 1.85;
}

.welcome .button {
    position: relative;
    z-index: 2;

    justify-content: flex-start;

    margin-top: 28px;
    margin-bottom: 0;
}

.welcome .button a {
    min-width: 190px;

    text-align: center;
}

/* ================================================= */
/* ABSCHNITTSÜBERSCHRIFTEN */
/* ================================================= */

.section-heading {
    display: block;
    position: relative;

    width: fit-content;
    max-width: 1450px;

    margin: 70px auto 30px;

    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading::before {
    content: "";

    position: absolute;
    top: 50%;
    left: -28px;
    z-index: -1;

    width: 85px;
    height: 85px;

    border-radius: 50%;

    background: repeating-conic-gradient(var(--color-red-dark) 0deg 8deg, transparent 8deg 18deg);

    opacity: 0.22;

    transform: translateY(-50%);
}

.section-heading::after {
    content: "✦";

    position: absolute;
    top: -8px;
    right: -28px;

    color: var(--color-red-dark);
    font-size: 1.8rem;
}

/* ================================================= */
/* FAHRZEUGE */
/* ================================================= */

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;

    width: 100%;
    max-width: 1450px;

    margin: auto;
}

.vehicle-card {
    position: relative;
    overflow: hidden;

    padding: 32px 22px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 24px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: 0.3s;
    animation: fadeUp 0.8s ease;
}

.vehicle-card:nth-child(odd) {
    transform: rotate(-2deg);
}

.vehicle-card:nth-child(even) {
    transform: rotate(2deg);
}

.vehicle-card:hover {
    color: var(--color-cream);
    background: var(--color-red);

    transform: translateY(-10px) rotate(0deg);
}

.vehicle-card::before {
    content: "";

    position: absolute;
    top: -55px;
    right: -55px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: rgba(141, 48, 40, 0.12);
}

.vehicle-card .icon {
    display: block;

    margin-bottom: 18px;

    font-size: 3rem;
}

.vehicle-card h3 {
    margin-bottom: 10px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.4rem;
}

.vehicle-card:hover h3 {
    color: var(--color-cream);
}

.vehicle-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ================================================= */
/* ABLAUF */
/* ================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;

    width: 100%;
    max-width: 1450px;

    margin: 20px auto 0;
}

.step {
    position: relative;

    padding: 45px 25px 30px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 28px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: 0.3s;
    animation: fadeUp 0.8s ease;
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -22px;
    left: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;

    color: var(--color-cream);
    background: var(--color-red);

    border: 4px solid var(--color-cream);
    border-radius: 50%;

    font-family: var(--font-display);
    font-size: 1.4rem;

    transform: translateX(-50%) rotate(-8deg);
}

.step-icon {
    display: block;

    margin-bottom: 18px;

    font-size: 3rem;
}

.step h3 {
    margin-bottom: 10px;

    color: var(--color-cream);
    font-size: 1.4rem;
}

.step p {
    line-height: 1.7;
}

/* ================================================= */
/* GALERIE-TEASER */
/* ================================================= */

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;

    width: 100%;
    max-width: 1450px;

    margin: 20px auto 0;
}

.teaser-grid a {
    display: block;
    overflow: hidden;

    background: white;

    border: 6px solid var(--color-red-dark);
    border-radius: 24px;

    box-shadow: var(--shadow);

    transition: 0.35s;
}

.teaser-grid a:hover {
    transform: rotate(-2deg) translateY(-8px);
}

.teaser-grid img {
    width: 100%;
    height: 260px;

    object-fit: cover;

    transition: 0.4s;
}

.teaser-grid a:hover img {
    transform: scale(1.08);
}

/* ================================================= */
/* BUTTONS */
/* ================================================= */

.button {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 20px;
    margin-bottom: 28px;
}

.button a {
    padding: 14px 22px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 14px;

    font-weight: 600;

    transition: 0.3s;
}

.button a:hover {
    background: var(--color-red);

    transform: translateY(-4px);
}

/* ================================================= */
/* SOCIAL MEDIA – BEREINIGTE VERSION */
/* ================================================= */

.social-media {
    position: relative;
    overflow: hidden;

    display: block;

    width: calc(100% - 40px);
    max-width: 1450px;
    margin: 60px auto 0;
    padding: 42px 35px 48px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 30px;

    text-align: center;

    box-shadow: var(--shadow);
}

/* Sonnenstrahl links unten */

.social-media::before {
    content: "";

    position: absolute;
    left: -104px;
    bottom: -106px;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(255, 255, 255, 0.16) 0deg 8deg, transparent 8deg 18deg);

    pointer-events: none;
}

/* Sonnenstrahl rechts oben */

.social-media::after {
    content: "";

    position: absolute;
    top: -102px;
    right: -94px;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(255, 255, 255, 0.16) 0deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

.social-media > h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.4rem);
}

.social-media > p {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto;

    color: var(--color-cream);

    font-size: 1.05rem;
    line-height: 1.7;
}

/* ================================================= */
/* SOCIAL-MEDIA-KARTEN */
/* ================================================= */

.social-links {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 340px));
    justify-content: center;
    gap: 24px;

    max-width: 760px;
    margin: 30px auto 0;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 96px;
    padding: 16px 20px;

    color: var(--color-black);
    background: var(--color-cream);

    border: 3px solid transparent;
    border-radius: 18px;

    text-align: left;

    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.2);

    transition:
        transform 0.3s,
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.social-card:hover {
    background: white;
    border-color: var(--color-pink);

    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.22);

    transform: translateY(-5px);
}

.social-icon {
    flex: 0 0 54px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 54px;
    height: 54px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 14px;

    font-family: Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.facebook-icon {
    padding-top: 5px;
}

.instagram-icon svg {
    display: block;

    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.instagram-icon .instagram-dot {
    fill: currentColor;
    stroke: none;
}

.social-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
}

.social-text strong {
    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.2;
}

.social-text small {
    margin-top: 4px;

    color: var(--color-black);

    font-size: 0.88rem;
    line-height: 1.35;
}

/* ================================================= */
/* SOCIAL MEDIA RESPONSIVE */
/* ================================================= */

@media (max-width: 700px) {
    .social-media {
        width: calc(100% - 20px);
        padding: 35px 20px 40px;
    }

    .social-links {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .social-card {
        width: 100%;
    }

    .social-media::before {
        left: -115px;
        bottom: -140px;

        width: 240px;
        height: 240px;
    }

    .social-media::after {
        top: -135px;
        right: -115px;

        width: 240px;
        height: 240px;
    }
}
/* ================================================= */
/* FOOTER */
/* ================================================= */

footer {
    position: relative;
    overflow: hidden;

    margin-top: 35px;
    padding: 50px 20px;

    color: var(--color-cream);
    background: var(--color-black);

    border-top: 8px solid var(--color-red-dark);

    text-align: center;
}

footer::before {
    content: "";

    position: absolute;
    bottom: -160px;
    left: -78px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: repeating-conic-gradient(var(--color-red-dark) -1deg 8deg, transparent 8deg 16deg);

    opacity: 0.2;
}

footer::after {
    content: "";

    position: absolute;
    top: -161px;
    right: -130px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: repeating-conic-gradient(var(--color-red-dark) 0deg 8deg, transparent 8deg 16deg);

    opacity: 0.2;
}

footer p {
    position: relative;
    z-index: 2;

    opacity: 0.85;
}

/* ================================================= */
/* BACK TO TOP */
/* ================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    border: 4px solid var(--color-cream);
    border-radius: 50%;

    background: var(--color-red-dark);
    color: var(--color-cream);

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);

    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--color-red);
    border-color: white;
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ================================================= */
/* ANIMATIONEN */
/* ================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

/* ================================================= */
/* UNTERSEITEN */
/* ================================================= */

.page-header {
    max-width: 1100px;
    margin: 70px auto 50px;

    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 3.5rem;
}

.page-header p {
    max-width: 700px;
    margin: auto;

    font-size: 1.2rem;
}

.content {
    max-width: 1100px;
    margin: auto;
}

.content section {
    margin-bottom: 60px;
}

/* ================================================= */
/* SPONSOREN UND ALLGEMEINE KARTEN */
/* ================================================= */

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;

    max-width: 1100px;
    margin: 0 auto 60px;
}

.card {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 35px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 26px;

    box-shadow: var(--shadow-standard);
}

.card-grid .card {
    margin: 0;
}

.card h2 {
    margin-bottom: 15px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 2rem;
}

.card p {
    margin-bottom: 15px;

    font-size: 1.05rem;
    line-height: 1.8;
}

.card .button {
    justify-content: flex-start;

    margin-top: 25px;
    margin-bottom: 0;
}

/* ================================================= */
/* ANKLICKBARE SPONSORENKARTEN */
/* ================================================= */

.sponsor-company-link {
    color: var(--color-black);
    cursor: pointer;
}

.sponsor-company-link:hover {
    box-shadow:
        14px 14px 0 rgba(156, 51, 43, 0.23),
        0 12px 25px rgba(0, 0, 0, 0.12);

    transform: translateY(-7px);
}

.sponsor-company-link:focus-visible {
    outline: 5px solid var(--color-pink);
    outline-offset: 6px;
}

.sponsor-website-hint {
    position: relative;
    z-index: 2;

    display: inline-block;

    width: fit-content;
    margin: 18px auto 0;
    padding: 8px 15px;

    color: var(--color-red-dark);
    background: var(--color-cream);

    border: 2px solid var(--color-red-dark);
    border-radius: 999px;

    font-size: 0.85rem;
    font-weight: 700;

    transition:
        color 0.3s,
        background 0.3s,
        transform 0.3s;
}

.sponsor-company-link:hover .sponsor-website-hint {
    color: var(--color-cream);
    background: var(--color-red-dark);

    transform: translateY(-2px);
}
/* ================================================= */
/* HINWEIS-KACHEL BEI WICHTIGEN INFORMATIONEN */
/* ================================================= */

.info-update-card {
    grid-column: 1 / -1;

    position: relative;
    overflow: hidden;

    width: min(1100px, 100%);
    min-height: 240px;
    margin: 18px auto 0;
    padding: 62px 40px 54px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: var(--color-cream);
    background: var(--color-red-dark);

    text-align: center;

    border: 4px solid var(--color-red-dark);
    border-radius: 28px;

    box-shadow:
        14px 14px 0 rgba(156, 51, 43, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Oberes Absperrband */
.info-update-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 16px;

    background: repeating-linear-gradient(-45deg, var(--color-cream) 0 16px, var(--color-red) 16px 32px);
}

/* Unteres Deko-Element rechts */
.info-update-card::after {
    content: "";

    position: absolute;
    right: -70px;
    bottom: -95px;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(255, 255, 255, 0.14) -2deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

.info-update-card .info-update-icon {
    position: relative;
    z-index: 2;

    display: block;
    margin-bottom: 10px;

    color: var(--color-pink);
    font-size: 2.4rem;
    line-height: 1;
}

.info-update-card h2 {
    position: relative;
    z-index: 2;

    max-width: 820px;
    margin: 0 auto;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.12;
    text-align: center;
}

.info-update-card p {
    position: relative;
    z-index: 2;

    max-width: 720px;
    margin: 18px auto 0;

    color: var(--color-cream);

    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}
/* Hinweis-Kachel wirklich zentrieren */

.important-info-grid .info-update-card {
    grid-column: 1 / -1;
    justify-self: center;

    width: min(1100px, calc(100% - 40px));
    margin: 18px auto 0;
}

@media (max-width: 650px) {
    .info-update-card {
        min-height: 210px;
        padding: 52px 22px 40px;
    }

    .info-update-card::before {
        height: 13px;
    }

    .info-update-card h2 {
        font-size: clamp(1.7rem, 8vw, 2.5rem);
    }

    .info-update-card p {
        font-size: 0.98rem;
    }
    .important-info-grid .info-update-card {
        width: 100%;
    }
}

/* ================================================= */
/* SPONSORENLOGOS */
/* ================================================= */

.sponsor-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;

    margin-top: 30px;
}

.sponsor-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 160px;
    padding: 25px;

    background: white;

    border: 4px solid var(--color-red-dark);
    border-radius: 22px;

    box-shadow: var(--shadow-standard);

    transition: 0.3s;
}

.sponsor-logo:hover {
    transform: translateY(-6px);
}

.sponsor-logo img {
    width: 100%;
    max-width: 220px;
    max-height: 110px;

    object-fit: contain;
}

/* ================================================= */
/* RESPONSIVE BIS 1200 PX */
/* ================================================= */

@media (max-width: 1200px) {
    .info-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }
}

/* ================================================= */
/* RESPONSIVE BIS 1000 PX */
/* ================================================= */

@media (max-width: 1000px) {
    header {
        padding: 0 20px;
    }

    .brand {
        font-size: 0.95rem;
    }

    nav {
        gap: 18px;
    }

    .hero-logo {
        width: 165px;
    }

    .hero-title {
        width: min(800px, calc(100% - 50px));
        padding: 30px 36px;
    }

    .hero::before {
        width: 260px;
        height: 260px;
    }

    .hero::after {
        width: 240px;
        height: 240px;
    }
}

/* ================================================= */
/* RESPONSIVE BIS 800 PX */
/* ================================================= */

@media (max-width: 1024px) {
    .nav-toggle-label {
        display: block;

        color: var(--color-cream);
        font-size: 2rem;

        cursor: pointer;
    }

    nav {
        position: absolute;
        top: 105px;
        left: 0;

        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;

        width: 100%;
        padding: 20px 0;

        background: var(--color-black);
        border-top: 5px solid var(--color-red-dark);
    }

    .nav-toggle:checked ~ nav {
        display: flex;
    }

    .info-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        max-width: 680px;
        margin-top: 25px;
    }

    .welcome {
        padding: 30px;
    }

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

    .card {
        padding: 28px 22px;
    }

    .card h2 {
        font-size: 1.7rem;
    }

    .page-header h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 650px) {
    header {
        height: 125px;
        padding: 0 15px;
    }

    .header-left {
        gap: 11px;
        min-width: 0;
    }

    .brand-logo {
        flex-shrink: 0;

        width: 90px;
        height: 90px;
    }

    .brand {
        display: block;

        color: var(--color-cream);

        font-size: clamp(0.78rem, 2.6vw, 0.84rem);
        font-weight: 700;
        line-height: 1.2;
    }

    .nav-toggle-label {
        flex-shrink: 0;

        font-size: 2.15rem;
        line-height: 1;
    }

    nav {
        top: 125px;
    }

    .hero {
        min-height: calc(100vh - 125px);
        min-height: calc(100svh - 125px);

        padding: 30px 18px 35px;
    }

    .hero-logo {
        width: 135px;
        margin-bottom: 22px;
    }

    .hero-subtitle {
        margin-bottom: 17px;

        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-title {
        width: calc(100% - 25px);
        padding: 25px 18px;
    }

    .hero-title h1 {
        font-size: clamp(2.3rem, 10vw, 4rem);
    }

    .hero-date {
        margin-top: 27px;

        font-size: 1.05rem;
    }

    .hero::before {
        top: -60px;
        left: 10px;

        width: 190px;
        height: 190px;
    }

    .hero::after {
        right: 10px;
        bottom: 10px;

        width: 175px;
        height: 175px;
    }
}

/* ================================================= */
/* RESPONSIVE BIS 600 PX */
/* ================================================= */

@media (max-width: 600px) {
    main {
        padding: 30px 15px;
    }

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

        margin-top: 20px;
    }

    .button {
        flex-direction: column;
    }

    .button a {
        width: 100%;

        text-align: center;
    }

    .hero-title {
        width: 100%;
        padding: 24px 15px;
    }

    .hero-date {
        font-size: 1rem;
    }

    .countdown,
    .social-media {
        padding: 32px 20px;
    }

    .welcome {
        padding: 28px 22px;
    }

    .page-header {
        margin-top: 45px;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }
}

/* ================================================= */
/* HINTERGRUND-DEKORATION IM BODY ENTFERNEN */
/* ================================================= */

body {
    background: var(--color-cream);
}

/* ================================================= */
/* DEKORIERTER SEITENTITEL */
/* ================================================= */

.page-header-decorated {
    position: relative;

    max-width: 1100px;
    margin: 75px auto 65px;

    text-align: center;
}

.page-subtitle {
    margin-bottom: 18px;

    color: var(--color-red-dark);

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    transform: rotate(-2deg);
}

.page-title-box {
    display: inline-block;

    margin-bottom: 30px;
    padding: 22px 58px;

    background: var(--color-red-dark);

    border-radius: 25px;

    box-shadow: 11px 11px 0 rgba(0, 0, 0, 0.16);

    transform: rotate(-2deg);
}

.page-header .page-title-box h1 {
    margin: 0;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(2.7rem, 6vw, 4.7rem);
    line-height: 1;

    text-shadow: 4px 4px 0 var(--color-red);
}

.page-introduction {
    max-width: 720px;
    margin: 0 auto;

    font-size: 1.15rem;
    line-height: 1.8;
}

/* ================================================= */
/* WICHTIGE INFORMATIONEN */
/* ================================================= */

.important-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    max-width: 1450px;
}

.important-info-grid .card {
    display: flex;
    flex-direction: column;

    height: 100%;
}

.important-info-grid .card .button {
    margin-top: auto;
    padding-top: 15px;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media (max-width: 1100px) {
    .important-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 750px) {
    .important-info-grid {
        grid-template-columns: 1fr;
    }

    .page-title-box {
        width: calc(100% - 30px);
        padding: 20px 25px;
    }

    .page-header .page-title-box h1 {
        font-size: clamp(2.2rem, 12vw, 3.3rem);
    }
}

/* ================================================= */
/* GALERIE */
/* ================================================= */

.gallery-section {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto 70px;
}

.gallery-intro {
    max-width: 760px;
    margin: 0 auto 35px;

    text-align: center;
}

.gallery-intro h2 {
    margin-bottom: 10px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.gallery-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ================================================= */
/* GALERIE-Raster */
/* ================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.gallery-item {
    position: relative;
    overflow: hidden;

    aspect-ratio: 4 / 3;

    background: white;

    border: 6px solid var(--color-red-dark);
    border-radius: 24px;

    box-shadow: var(--shadow);

    transition:
        transform 0.35s,
        box-shadow 0.35s;
}

.gallery-item:nth-child(3n + 1) {
    transform: rotate(-1.2deg);
}

.gallery-item:nth-child(3n + 2) {
    transform: rotate(1deg);
}

.gallery-item:nth-child(3n + 3) {
    transform: rotate(-0.5deg);
}

.gallery-item:hover {
    z-index: 3;

    box-shadow: 12px 14px 0 rgba(156, 51, 43, 0.22);

    transform: translateY(-9px) rotate(0deg);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s,
        filter 0.45s;
}

.gallery-item:hover img {
    filter: brightness(0.84);

    transform: scale(1.08);
}

.gallery-number {
    position: absolute;
    right: 14px;
    bottom: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border: 3px solid var(--color-cream);
    border-radius: 50%;

    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;

    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);

    transition: 0.3s;
}

.gallery-item:hover .gallery-number {
    color: var(--color-red-dark);
    background: var(--color-cream);

    transform: rotate(8deg) scale(1.08);
}

/* ================================================= */
/* GALERIE-AUFRUF */
/* ================================================= */

.gallery-cta {
    position: relative;
    overflow: hidden;

    max-width: 1100px;
    margin: 30px auto 70px;
    padding: 42px;

    color: var(--color-cream);
    background: var(--color-black);

    border-radius: 28px;

    text-align: center;

    box-shadow: var(--shadow);
}

.gallery-cta::after {
    content: "";

    position: absolute;
    right: -107px;
    bottom: -103px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(255, 255, 255, 0.15) 0deg 8deg, transparent 8deg 18deg);

    pointer-events: none;
}

.gallery-cta h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.gallery-cta p {
    position: relative;
    z-index: 2;

    max-width: 720px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.8;
}

.gallery-cta .button {
    margin-bottom: 0;
}

/* ================================================= */
/* GALERIE RESPONSIVE */
/* ================================================= */

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gallery-item,
    .gallery-item:nth-child(3n + 1),
    .gallery-item:nth-child(3n + 2),
    .gallery-item:nth-child(3n + 3) {
        transform: none;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
    }

    .gallery-cta {
        padding: 34px 22px;
    }
}

/* ================================================= */
/* LIGHTBOX */
/* ================================================= */

body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 45px 100px;

    background: rgba(28, 26, 26, 0.94);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s,
        visibility 0.3s;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ================================================= */
/* LIGHTBOX-INHALT */
/* ================================================= */

.lightbox-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: min(1200px, 100%);
    max-height: calc(100vh - 90px);
    margin: 0;

    transform: scale(0.94);
    transition: transform 0.3s;
}

.lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    display: block;

    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 160px);

    object-fit: contain;

    border: 6px solid var(--color-cream);
    border-radius: 20px;

    box-shadow:
        12px 12px 0 var(--color-red-dark),
        0 15px 45px rgba(0, 0, 0, 0.45);
}

.lightbox-content figcaption {
    max-width: 850px;
    margin-top: 22px;
    padding: 9px 20px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 999px;

    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* ================================================= */
/* LIGHTBOX-BUTTONS */
/* ================================================= */

.lightbox-close,
.lightbox-navigation {
    position: absolute;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border: 4px solid var(--color-cream);
    border-radius: 50%;

    font-family: Arial, sans-serif;
    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 0 0 3px var(--color-red-dark),
        0 8px 20px rgba(0, 0, 0, 0.35);

    transition:
        background 0.25s,
        transform 0.25s;
}

.lightbox-close:hover,
.lightbox-navigation:hover {
    background: var(--color-red);
    transform: scale(1.08);
}

.lightbox-close:focus-visible,
.lightbox-navigation:focus-visible {
    outline: 4px solid var(--color-pink);
    outline-offset: 6px;
}

/* Schliessen */

.lightbox-close {
    top: 25px;
    right: 30px;

    width: 58px;
    height: 58px;

    padding-bottom: 5px;

    font-size: 2.5rem;
}

/* Navigation */

.lightbox-navigation {
    top: 50%;

    width: 62px;
    height: 62px;

    font-size: 3rem;

    transform: translateY(-50%);
}

.lightbox-navigation:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

/* ================================================= */
/* GALERIE-HINWEIS BEIM HOVER */
/* ================================================= */

.gallery-item::after {
    content: "Bild vergrössern";

    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 2;

    padding: 8px 15px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 999px;

    font-size: 0.85rem;
    font-weight: 700;

    opacity: 0;

    transform: translate(-50%, 15px);
    transition:
        opacity 0.3s,
        transform 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ================================================= */
/* LIGHTBOX RESPONSIVE */
/* ================================================= */

@media (max-width: 750px) {
    .lightbox {
        padding: 80px 18px 90px;
    }

    .lightbox-content img {
        max-height: calc(100vh - 210px);

        border-width: 4px;
        border-radius: 15px;

        box-shadow:
            7px 7px 0 var(--color-red-dark),
            0 12px 35px rgba(0, 0, 0, 0.45);
    }

    .lightbox-close {
        top: 18px;
        right: 18px;

        width: 50px;
        height: 50px;

        font-size: 2.1rem;
    }

    .lightbox-navigation {
        top: auto;
        bottom: 20px;

        width: 52px;
        height: 52px;

        font-size: 2.5rem;

        transform: none;
    }

    .lightbox-navigation:hover {
        transform: scale(1.08);
    }

    .lightbox-prev {
        left: calc(50% - 70px);
    }

    .lightbox-next {
        right: calc(50% - 70px);
    }

    .lightbox-content figcaption {
        margin-top: 17px;

        font-size: 0.88rem;
    }
}

/* ================================================= */
/* SPONSORENSEITE */
/* ================================================= */

.sponsor-section {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto 80px;
}

.sponsor-section-intro {
    max-width: 780px;
    margin: -10px auto 35px;

    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
}

/* ================================================= */
/* FIRMENSPONSOREN */
/* ================================================= */

.sponsor-company-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.sponsor-company-card {
    position: relative;
    overflow: hidden;

    padding: 20px 20px 26px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 25px;

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.sponsor-company-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.sponsor-company-card:nth-child(even) {
    transform: rotate(1deg);
}

.sponsor-company-card:hover {
    z-index: 2;

    box-shadow: 12px 14px 0 rgba(156, 51, 43, 0.2);

    transform: translateY(-8px) rotate(0deg);
}

.sponsor-company-card::after {
    content: "";

    position: absolute;
    right: -42px;
    bottom: -44px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(156, 51, 43, 0.1) -1deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

.sponsor-logo-frame {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    min-height: 175px;
    margin-bottom: 22px;
    padding: 25px;

    background: var(--color-cream);

    border: 3px dashed rgba(156, 51, 43, 0.45);
    border-radius: 18px;
}

.sponsor-logo-frame img {
    width: 100%;
    max-width: 230px;
    max-height: 125px;

    object-fit: contain;
}

.sponsor-placeholder {
    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;

    opacity: 0.65;
}

.sponsor-company-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 4px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.5rem;
}

.sponsor-role {
    position: relative;
    z-index: 2;

    font-size: 0.95rem;
    font-weight: 600;
}

/* ================================================= */
/* PRIVATE UNTERSTÜTZER */
/* ================================================= */

.private-sponsor-section {
    max-width: 1150px;
}

.private-sponsor-panel {
    position: relative;
    overflow: hidden;

    padding: 42px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 28px;

    box-shadow: 12px 12px 0 var(--color-red-dark);

    text-align: center;
}

.private-sponsor-panel h3 {
    margin-bottom: 12px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.private-sponsor-panel > p {
    max-width: 760px;
    margin: 0 auto 30px;

    font-size: 1.05rem;
    line-height: 1.8;
}

/* ================================================= */
/* LISTE DER PRIVATEN SPONSOREN */
/* ================================================= */

.private-sponsor-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;

    width: 100%;
    max-width: 1050px;
    margin: 35px auto 0;
}

.private-sponsor-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: auto;
    min-width: 0;
    min-height: 105px;
    padding: 20px 25px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border: 4px solid var(--color-cream);
    border-radius: 20px;

    text-align: center;

    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.17);

    transition:
        transform 0.3s,
        background 0.3s,
        box-shadow 0.3s;
}

.private-sponsor-name:hover {
    background: var(--color-red);

    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);

    transform: translateY(-6px);
}

.private-sponsor-name strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.2;
}

.private-sponsor-name span {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ================================================= */
/* SPONSOR WERDEN */
/* ================================================= */

.sponsor-cta {
    position: relative;
    overflow: hidden;

    max-width: 1150px;
    margin: 20px auto 75px;
    padding: 48px 40px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 30px;

    text-align: center;

    box-shadow: var(--shadow);
}

.sponsor-cta::before {
    content: "";

    position: absolute;
    top: -124px;
    right: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(255, 255, 255, 0.16) 0deg 8deg, transparent 8deg 16deg);
}

.sponsor-cta-content {
    position: relative;
    z-index: 2;
}

.sponsor-cta-label {
    margin-bottom: 8px;

    color: var(--color-pink);

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sponsor-cta h2 {
    margin-bottom: 12px;

    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
}

.sponsor-cta-content > p:not(.sponsor-cta-label) {
    max-width: 760px;
    margin: auto;

    line-height: 1.8;
}

.sponsor-cta .button {
    margin-bottom: 0;
}

.sponsor-cta .button a {
    background: var(--color-cream);
    color: var(--color-red-dark);
}

.sponsor-cta .button a:hover {
    background: white;
}

/* ================================================= */
/* SPONSOREN RESPONSIVE */
/* ================================================= */

@media (max-width: 1150px) {
    .sponsor-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .sponsor-company-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-company-card,
    .sponsor-company-card:nth-child(odd),
    .sponsor-company-card:nth-child(even) {
        transform: none;
    }

    .private-sponsor-panel {
        padding: 38px 22px;
    }

    .private-sponsor-name {
        width: 100%;
    }

    .sponsor-cta {
        padding: 40px 22px;
    }
}

.private-sponsor-list {
    grid-template-columns: 1fr;
}

.private-sponsor-name {
    min-height: 85px;
}

@media (max-width: 700px) {
    .private-sponsor-list {
        grid-template-columns: 1fr;
    }

    .private-sponsor-name {
        min-height: 90px;
    }
}

/* ================================================= */
/* KONTAKTSEITE */
/* ================================================= */

.contact-panel {
    position: relative;
    overflow: hidden;

    width: 100%;
    max-width: 1100px;
    margin: 0 auto 75px;
    padding: 42px 48px 35px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 28px;

    box-shadow: 12px 12px 0 var(--color-red-dark);
}

.contact-panel::after {
    content: "";

    position: absolute;
    right: -111px;
    bottom: -113px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(156, 51, 43, 0.11) -2deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

.contact-panel-content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-icon {
    flex: 0 0 105px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 105px;
    height: 105px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border: 6px solid var(--color-cream);
    border-radius: 50%;

    font-size: 3.2rem;

    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.18);

    transform: rotate(-6deg);
}

.contact-panel-text {
    flex: 1;
}

.contact-label {
    margin-bottom: 5px;

    color: var(--color-red);

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-panel h2 {
    margin-bottom: 10px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-panel-text > p:not(.contact-label) {
    max-width: 750px;

    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-email {
    display: inline-block;

    margin-top: 16px;

    color: var(--color-red-dark);

    font-size: 1.08rem;
    font-weight: 700;

    overflow-wrap: anywhere;

    transition: 0.25s;
}

.contact-email:hover {
    color: var(--color-red);
}

.contact-panel .button {
    justify-content: flex-start;

    margin-top: 28px;
    margin-bottom: 0;
}

/* ================================================= */
/* KONTAKTTHEMEN */
/* ================================================= */

.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto 75px;
}

.contact-topic-card {
    position: relative;
    overflow: hidden;

    padding: 32px 25px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 24px;

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform 0.3s,
        background 0.3s,
        color 0.3s;
}

.contact-topic-card:nth-child(1) {
    transform: rotate(-1deg);
}

.contact-topic-card:nth-child(2) {
    transform: rotate(1deg);
}

.contact-topic-card:nth-child(3) {
    transform: rotate(-0.7deg);
}

.contact-topic-card::after {
    content: "";

    position: absolute;
    right: -50px;
    bottom: -55px;

    width: 125px;
    height: 125px;

    border-radius: 50%;

    background: rgba(156, 51, 43, 0.09);
}

.contact-topic-card:hover {
    color: var(--color-cream);
    background: var(--color-red);

    transform: translateY(-8px) rotate(0deg);
}

.contact-topic-icon {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 15px;

    font-size: 3rem;
}

.contact-topic-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.5rem;
}

.contact-topic-card:hover h3 {
    color: var(--color-cream);
}

.contact-topic-card p {
    position: relative;
    z-index: 2;

    line-height: 1.7;
}

/* ================================================= */
/* KONTAKT RESPONSIVE */
/* ================================================= */

@media (max-width: 900px) {
    .contact-topic-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .contact-topic-card,
    .contact-topic-card:nth-child(1),
    .contact-topic-card:nth-child(2),
    .contact-topic-card:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 700px) {
    .contact-panel {
        padding: 35px 24px 30px;
    }

    .contact-panel-content {
        flex-direction: column;

        text-align: center;
    }

    .contact-icon {
        flex-basis: 90px;

        width: 90px;
        height: 90px;

        font-size: 2.7rem;
    }

    .contact-panel .button {
        justify-content: center;
    }
}

/* ================================================= */
/* DOKUMENTENSEITE */
/* ================================================= */

.documents-section {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 75px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 480px));
    justify-content: center;
    gap: 30px;

    width: 100%;
    margin: 0 auto;
}

.document-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 430px;
    padding: 38px 28px 30px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 26px;

    text-align: center;

    box-shadow: var(--shadow);

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.document-card:nth-child(1) {
    transform: rotate(-1deg);
}

.document-card:nth-child(2) {
    transform: rotate(1deg);
}

.document-card:nth-child(3) {
    transform: rotate(-0.7deg);
}

.document-card:hover {
    z-index: 2;

    box-shadow: 12px 14px 0 rgba(156, 51, 43, 0.22);

    transform: translateY(-8px) rotate(0deg);
}

.document-card::after {
    content: "";

    position: absolute;
    right: -60px;
    bottom: -65px;

    width: 165px;
    height: 165px;

    border-radius: 50%;

    background: repeating-conic-gradient(rgba(156, 51, 43, 0.1) -2deg 8deg, transparent 8deg 16deg);

    pointer-events: none;
}

.document-icon {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 90px;
    height: 90px;
    margin-bottom: 20px;

    background: var(--color-cream);

    border: 4px solid var(--color-red-dark);
    border-radius: 50%;

    font-size: 2.8rem;

    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);

    transform: rotate(-5deg);
}

.document-type {
    position: relative;
    z-index: 2;

    margin-bottom: 5px;

    color: var(--color-red);

    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.document-card h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.2;
}

.document-card > p:not(.document-type) {
    position: relative;
    z-index: 2;

    margin-bottom: 25px;

    font-size: 1rem;
    line-height: 1.75;
}

.document-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 12px;

    width: 100%;
    margin-top: auto;
}

.document-actions a {
    width: 100%;
    padding: 13px 18px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border: 3px solid var(--color-red-dark);
    border-radius: 13px;

    font-weight: 600;

    transition: 0.3s;
}

.document-actions a:last-child {
    color: var(--color-red-dark);
    background: var(--color-cream);
}

.document-actions a:hover {
    color: var(--color-cream);
    background: var(--color-red);

    border-color: var(--color-red);

    transform: translateY(-3px);
}

/* ================================================= */
/* DOKUMENTENHINWEIS */
/* ================================================= */

.documents-note {
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;

    max-width: 1050px;
    margin: 0 auto 75px;
    padding: 38px 42px;

    background: white;

    border: 5px solid var(--color-red-dark);
    border-radius: 28px;

    box-shadow: 12px 12px 0 var(--color-red-dark);
}

.documents-note::after {
    content: "PDF";

    position: absolute;
    right: 20px;
    bottom: -25px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;

    opacity: 0.055;

    pointer-events: none;
}

.documents-note-icon {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 78px;
    height: 78px;

    color: var(--color-cream);
    background: var(--color-red-dark);

    border-radius: 50%;

    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;

    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.16);
}

.documents-note h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 8px;

    color: var(--color-red-dark);

    font-family: var(--font-display);
    font-size: 1.8rem;
}

.documents-note p {
    position: relative;
    z-index: 2;

    line-height: 1.75;
}

.documents-note .button {
    grid-column: 1 / -1;

    justify-content: center;

    margin-top: 5px;
    margin-bottom: 0;
}

/* ================================================= */
/* DOKUMENTE RESPONSIVE */
/* ================================================= */

@media (max-width: 1100px) {
    .documents-grid {
        grid-template-columns: repeat(2, minmax(280px, 430px));
    }

    .document-card,
    .document-card:nth-child(1),
    .document-card:nth-child(2),
    .document-card:nth-child(3) {
        min-height: 0;
        transform: none;
    }
}

@media (max-width: 720px) {
    .documents-grid {
        grid-template-columns: minmax(280px, 600px);
    }

    .document-card {
        padding: 32px 22px 26px;
    }

    .documents-note {
        grid-template-columns: 1fr;
        padding: 34px 22px;
        text-align: center;
    }

    .documents-note-icon {
        margin: auto;
    }
}

/* ================================================= */
/* HERO – HANDYANSICHT KORRIGIEREN */
/* ================================================= */

@media (max-width: 600px) {
    /* Hero wieder bis direkt unter den Header ziehen */
    main > .hero {
        width: calc(100% + 30px);
        margin: -30px -15px 0;

        padding: 38px 18px 45px;
    }

    .hero-content {
        width: 100%;
        min-width: 0;
    }

    /* Überschrift vollständig innerhalb des Kastens */
    .hero-title {
        width: calc(100% - 30px);
        max-width: 520px;

        padding: 22px 10px;

        border-radius: 24px;
    }

    .hero-title h1 {
        width: 100%;

        font-size: clamp(1.65rem, 7.2vw, 2.5rem);
        line-height: 0.95;
        letter-spacing: -0.02em;
        white-space: nowrap;
    }

    /* Oberes Deko-Element direkt in die Ecke setzen */
    .hero::before {
        top: -70px;
        left: -70px;

        width: 210px;
        height: 210px;
    }

    .hero-date {
        max-width: calc(100% - 30px);

        font-size: 0.98rem;
        line-height: 1.35;
    }
}

/* ================================================= */
/* COUNTDOWN – HANDYANSICHT */
/* ================================================= */

@media (max-width: 600px) {
    .countdown h2 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;

        font-size: clamp(1.7rem, 7.5vw, 2.25rem);
        line-height: 1.05;
        letter-spacing: -0.02em;

        overflow-wrap: normal;
        word-break: normal;
    }
}

/* ================================================= */
/* SEITENTITEL – HANDYANSICHT */
/* ================================================= */

@media (max-width: 600px) {
    .page-title-box {
        width: calc(100% - 35px);
        padding: 18px 12px;
    }

    .page-header .page-title-box h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1;
        white-space: nowrap;
    }
}

/* ================================================= */
/* ZWISCHENÜBERSCHRIFTEN – HANDYANSICHT */
/* ================================================= */

@media (max-width: 600px) {
    .section-heading {
        width: calc(100% - 20px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding-left: 18px;
        padding-right: 18px;

        line-height: 1.15;
    }

    .section-heading::before {
        left: 0;

        width: 72px;
        height: 72px;

        transform: translate(-8px, -50%);
    }

    .section-heading::after {
        right: 4px;
    }
}

/* ================================================= */
/* STANDORTKARTE */
/* ================================================= */

.location-section {
    width: 100%;
}

.location-map-card {
    position: relative;
    overflow: hidden;

    width: 100%;
    max-width: 1450px;
    height: 420px;
    margin: 20px auto 75px;

    background: white;

    border: 6px solid var(--color-red-dark);
    border-radius: 28px;

    box-shadow:
        12px 12px 0 rgba(156, 51, 43, 0.2),
        var(--shadow);
}

/* Google-Maps-Karte */

.location-map-card iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;

    /*
       Die Karte selbst ist nicht bedienbar.
       Der gesamte Ausschnitt funktioniert als Link.
    */
    pointer-events: none;
}

/* Klickbare Fläche über der Karte */

.location-map-link {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    padding: 25px;

    cursor: pointer;
}

/* Beschriftung auf der Karte */

.location-map-label {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    align-items: center;
    gap: 16px;

    width: min(560px, 100%);
    padding: 15px 20px;

    color: var(--color-cream);
    background: var(--color-black);

    border: 4px solid var(--color-cream);
    border-radius: 20px;

    box-shadow:
        0 0 0 4px var(--color-red-dark),
        0 10px 25px rgba(0, 0, 0, 0.3);

    transition:
        background 0.3s,
        transform 0.3s;
}

.location-map-link:hover .location-map-label {
    background: var(--color-red-dark);

    transform: translateY(-5px);
}

/* Standort-Symbol */

.location-map-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;

    background: var(--color-red-dark);

    border-radius: 15px;

    font-size: 1.7rem;
}

/* Standort-Text */

.location-map-text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.location-map-text strong {
    color: var(--color-cream);

    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
}

.location-map-text small {
    margin-top: 3px;

    color: var(--color-cream);

    font-size: 0.9rem;
    line-height: 1.35;

    opacity: 0.9;
}

/* Pfeil rechts */

.location-map-arrow {
    color: var(--color-pink);

    font-size: 1.8rem;
    font-weight: 700;

    transition: transform 0.3s;
}

.location-map-link:hover .location-map-arrow {
    transform: translate(3px, -3px);
}

/* Tastaturbedienung */

.location-map-link:focus-visible {
    outline: 5px solid var(--color-pink);
    outline-offset: 6px;
}

/* ================================================= */
/* STANDORTKARTE – HANDYANSICHT */
/* ================================================= */

@media (max-width: 600px) {
    .location-map-card {
        height: 320px;
        margin-bottom: 65px;

        border-width: 4px;
        border-radius: 22px;

        box-shadow:
            8px 8px 0 rgba(156, 51, 43, 0.2),
            var(--shadow);
    }

    .location-map-link {
        padding: 16px;
    }

    .location-map-label {
        grid-template-columns: 46px 1fr auto;
        gap: 11px;

        padding: 12px 14px;

        border-width: 3px;
        border-radius: 17px;

        box-shadow:
            0 0 0 3px var(--color-red-dark),
            0 8px 20px rgba(0, 0, 0, 0.28);
    }

    .location-map-icon {
        width: 44px;
        height: 44px;

        border-radius: 12px;

        font-size: 1.4rem;
    }

    .location-map-text strong {
        font-size: 1.1rem;
    }

    .location-map-text small {
        font-size: 0.75rem;
    }

    .location-map-arrow {
        font-size: 1.45rem;
    }
}

/* ================================================= */
/* MOBILE HEADER UND KLEINE UNTERTITEL */
/* ================================================= */

/* Header/Logo/Hero-Grössenanpassung jetzt im 650px-Block weiter oben */

/* ================================================= */
/* KLEINE UNTERTITEL AUF EINER ZEILE */
/* ================================================= */

@media (max-width: 600px) {
    .page-header .page-subtitle,
    .countdown .countdown-label,
    .sponsor-cta .sponsor-cta-label {
        display: block;

        width: fit-content;
        max-width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;

        font-size: clamp(0.9rem, 2.35vw, 0.72rem);
        line-height: 1.2;
        letter-spacing: 1px;

        text-align: center;
        white-space: nowrap;
    }

    .page-header .page-subtitle {
        margin-top: 0;
        margin-bottom: 15px;

        transform: rotate(-2deg);
    }

    .countdown .countdown-label {
        margin-bottom: 8px;
    }

    .sponsor-cta .sponsor-cta-label {
        margin-bottom: 10px;
    }
}