:root {
    --color-bg: #000000;
    --color-red: #7a0000;
    --color-red-deep: #3e0002; /* noch etwas tieferer Schatten-Ton */
    --color-white: #ffffff;
    --color-muted: #b3b3b3;

    --font-heading: "Anton", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
     --font-body: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --section-padding: 6rem;
    --section-padding-mobile: 3.5rem;
    --container-width: 1200px;

    /* Geschwindigkeit Galerie – hier anpassen */
    --gallery-duration: 20s;

    --floating-cta-width-desktop: 230px;
    --floating-cta-height-desktop: 110px;

    --floating-cta-width-mobile: 110px;
    --floating-cta-height-mobile: 65px;
}

/* Reset & Basics */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

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

.page-wrapper {
    background-color: var(--color-bg);
}

/* Layout */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.narrow {
    max-width: 800px;
}

.container.narrow-ticket {
    max-width: 980px;
}

/* Sections */

.section {
    padding: var(--section-padding) 0;
    position: relative;
    background: #000;
    overflow: visible;
}

/* Roter Rauch als Übergang (nicht im Hero) */
.section:not(.hero):not(.section-kino-banner)::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("/assets/img/bg/red-smoke.png") center top / cover no-repeat;
    opacity: 0.8;
    pointer-events: none;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    background-color: #000;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4.6rem, 13vw, 8.5rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--color-red);
    display: inline-block;
}

.hero-tagline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-white);
    margin: 0 0 1.6rem;
}

.hero-event-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-white);
}

.hero-event-info span {
    position: relative;
}

/* Standard: Punkt vor jedem Span außer dem ersten
   => 6. DEZEMBER • 10:00–13:00 UHR • ASTOR ...  */
.hero-event-info span + span::before {
    content: "•";
    position: absolute;
    left: -0.9rem;
    color: rgba(255, 255, 255, 0.65);
}
.hero-subline {
    max-width: 520px;
    margin: 0 auto 1.8rem;
    color: var(--color-muted);
    font-size: 1rem;
}

.hero-image {
    margin: 1.8rem auto 1.6rem;   /* Abstand nach oben/unten */
    max-width: 820px;             /* Breite des Bildes im Hero */
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.85);
}

.btn-note {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-muted);
}
/* Standard: Desktop bleibt eine Zeile */
.btn-note-break {
    display: inline;
}

/* iPhone / Mobile: zweite Zeile unter dem Button */
@media (max-width: 768px) {
    .btn-note-break {
        display: block;
        margin-top: 0.15rem; /* kleiner Abstand nach oben */
    }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        border-color 0.18s ease;
}

.btn-primary {
    background: #000;
    color: var(--color-white);
    border: 1px solid rgba(214, 0, 0, 0.9);
    box-shadow: 0 0 26px rgba(214, 0, 0, 0.95);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 40px rgba(214, 0, 0, 1);
}

.btn-outline {
    background: #000;
}

.btn-large {
    padding: 1.05rem 2.4rem;
    font-size: 0.95rem;
}

/* FLOATING CTA – Ticket-Bild */

.floating-cta {
    position: fixed;
    top: 50%;
    right: 1.8rem;
    transform: translateY(-50%);
    z-index: 50;

    width: var(--floating-cta-width-desktop);
    height: var(--floating-cta-height-desktop);

    padding: 0;
    min-width: 0;
    border-radius: 0;

    font-family: var(--font-heading);
    text-decoration: none;
    color: transparent;
    text-indent: -9999px;
    overflow: visible;
    background-image: url("/assets/img/ui/floating-ticket.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;

    background-color: transparent;
    box-shadow: none;
    border: none;
}

/* Glow rund um das Ticket – immer aktiv */
.floating-cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(
        circle,
        rgba(214, 0, 0, 0.95) 0%,
        rgba(214, 0, 0, 0.55) 35%,
        rgba(214, 0, 0, 0.0) 100%
    );
    filter: blur(16px);
    opacity: 1;
}

.floating-cta:hover::before {
    filter: blur(34px) brightness(1.2);
}

/* Hover-Boost nur auf Geräten mit echter Hover-Möglichkeit (Maus) */
@media (hover: hover) and (pointer: fine) {
    .floating-cta:hover {
        transform: translateY(-50%) translateY(-2px);
    }

    .floating-cta:hover::before {
        filter: blur(22px) brightness(1.25);
        opacity: 1;
    }
}

/* FLOATING CTA – Mobile Anpassung */
@media (max-width: 768px) {
    .floating-cta {
        right: 1rem;
        top: 55%;
        transform: translateY(-50%);
        width: var(--floating-cta-width-mobile);
        height: var(--floating-cta-height-mobile);
    }

 .section-quote .quote-mobile-linebreak {
        display: block;        /* bricht „der bleibt.“ in eine neue Zeile */
    }
}
/* KINO-BANNER SECTION */

.section-kino-banner {
    position: relative;
    margin-bottom: 3rem;
    background: #000;
    padding: 0;
    min-height: 420px;
}

.kino-banner-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
}

.kino-banner-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

/* Das eigentliche Hintergrundbild */
.kino-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85)),
        url("/assets/img/kino/kino-saal.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 0;
    overflow: hidden;
}

.kino-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

/* Inhalt darüber (aktuell leer, aber reserviert) */
.kino-banner-inner {
    position: relative;
    z-index: 1;
    min-height: 420px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 960px) {
    .section-kino-banner,
    .kino-banner-inner {
        min-height: 540px;
    }
}

/* Typo Helper */

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--color-white);
    margin: 0 0 0.9rem;
    opacity: 0.85;
    font-family: var(--font-heading);
}

.section-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    margin: 0.5rem 0 0.5rem;
}

.section-tagline {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.88rem;
    color: var(--color-muted);
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--color-muted);
    margin: 0 0 1.8rem;
    font-family: var(--font-heading);
}

.body-text {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 0 0 1rem;
}

.body-text.strong {
    color: var(--color-white);
    font-weight: 600;
}

/* STAR SECTION */

.section-star {
    background: #000;
}

.star-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: center;
}

.star-image {
    transform-style: preserve-3d;
}

.star-image img {
    border-radius: 0;
    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.95),
        0 0 40px rgba(0, 0, 0, 0.75);
    transform: translateZ(0);
}

.star-title-red {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    letter-spacing: 0.26em;
    color: var(--color-red);
    margin: 0 0 0.8rem;
}

/* STATEMENTS */

.section-statements {
    background: #000;
}

.statements-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.statement-item {
    background: #ffffff;
    color: #000000;
    border-radius: 0;
    padding: 2.1rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.9);
}

.statement-item p {
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1rem;
    line-height: 1.6;
}

/* GALERIE */

.section-gallery {
    background: #000;
}

.gallery-wrapper {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.7rem 0;
}

/* Track ist eine endlose horizontale Reihe */
.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.8rem;
    will-change: transform;
}

/* jedes Bild nimmt nur so viel Platz wie nötig ein */
.gallery-item {
    flex: 0 0 auto;
}

/* Bilder: kompletter Inhalt sichtbar, keine Überlappung */
.gallery-item img {
    display: block;
    height: 340px;           /* Desktop-Höhe */
    width: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
}

/* Endlos-Scroll: 2x Track => nach 50% ist ein Durchlauf */
@keyframes gallery-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* STORY SECTION */

.section-story {
    position: relative;
    background: #000;
}

.section-story .section-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
        url("/assets/img/bg/red-texture.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.65;
    mix-blend-mode: screen;
    pointer-events: none;
}

.section-story .container {
    position: relative;
    z-index: 1;
}

.story-list {
    margin: 0 0 1.5rem 1.2rem;
    padding: 0;
    color: var(--color-muted);
}

/* ========================= */
/*  TICKET SECTION (NEU)     */
/* ========================= */

.section-cta {
    background: #000;
}

/* Ticket-Bild + Glow */
.ticket-pass-img-wrap {
    position: relative;
    max-width: 820px;          /* Breite des Tickets am Desktop */
    margin: 0 auto 2.6rem;     /* zentriert + Abstand zum Button */
}

/* Bild selbst – Ecken eckig */
.ticket-pass-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;          /* Ecken des Tickets eckig */
}

/* Roter Nebel rund ums Bild, mit sichtbaren Ecken */
.ticket-pass-img-wrap::before {
    content: "";
    position: absolute;
    inset: -60px;              /* WIE WEIT der Glow übersteht (größer = mehr Nebel) */
    border-radius: 0;          /* Glow eckig wie das Bild */
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 0 0,         rgba(214,0,0,0.85) 0, transparent 60%),
        radial-gradient(circle at 100% 0,      rgba(214,0,0,0.85) 0, transparent 60%),
        radial-gradient(circle at 0 100%,      rgba(214,0,0,0.85) 0, transparent 60%),
        radial-gradient(circle at 100% 100%,   rgba(214,0,0,0.85) 0, transparent 60%);
    filter: blur(40px);        /* Unschärfe des Nebels */
    opacity: 1;
}
/* iPhone / Mobile: Glow schwächer + kompakter */
@media (max-width: 768px) {
    .ticket-pass-img-wrap {
        max-width: 95%;
        margin: 0 auto 2rem;   /* schön mittig */
        padding: 0;            /* kein Extra-Padding seitlich */
    }

    .ticket-pass-img-wrap::before {
        inset: -18px;          /* weniger weit raus = kleinerer Rahmen */
        filter: blur(18px);    /* weniger Nebel */
        opacity: 0.75;         /* transparenter */
    }

    .pass-cta-wrap {
        margin-top: 3rem;      /* Button etwas näher ans Ticket holen */
    }
}
/* Mobile: Bild bleibt schön groß */
@media (max-width: 768px) {
    .ticket-pass-img-wrap {
        max-width: 100%;
        margin: 0 auto 2.2rem;
        padding: 0 0.5rem;
    }
}

/* CTA-Bereich unter dem Ticket */
.pass-cta-wrap {
    margin-top: 4.8rem;
    display: flex;
    justify-content: center;
}

/* Ticket-Button-Style */
.ticket-cta {
    background: #ffffff;
    color: #000000 !important;
    border: 1px solid rgba(214, 0, 0, 0.95);
    box-shadow: 0 0 32px rgba(214, 0, 0, 0.95);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 1.05rem 2.8rem;
    white-space: nowrap;       /* Text bleibt in einer Zeile */
}

/* Hover-Effekt */
.ticket-cta:hover {
    background: #f5f5f5;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 0 44px rgba(214, 0, 0, 1);
}
/* Bild zwischen Button und Statement */
.ticket-bottom-img-wrap {
    margin: 3.5rem auto 0;    /* Abstand nach oben, zentriert */
    max-width: 720px;         /* Breite am Desktop begrenzen */
}

.ticket-bottom-img {
    display: block;
    width: 100%;              /* immer volle Breite innerhalb max-width */
    height: auto;
    border-radius: 0;         /* falls das Bild eckig bleiben soll */
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.85);  /* leichter Kino-Shadow */
}

/* Mobile: etwas kompakter */
@media (max-width: 520px) {
    .ticket-bottom-img-wrap {
        max-width: 100%;
        margin: 2.5rem auto 0;
        padding: 0 0.5rem;    /* kleiner Innenabstand zum Rand */
    }
}
@media (max-width: 520px) {
    .section-quote .quote-mobile-linebreak {
        display: block;        /* bricht „der bleibt.“ in eine neue Zeile */
    }
}
/* iPhone: Punkt vor der Location entfernen */
@media (max-width: 520px) {
    .hero-event-info span:nth-child(3)::before {
        content: none !important;
    }
}
/* HERO – Datum & Uhrzeit auf Mobile in eine Zeile */
@media (max-width: 520px) {
    .hero-event-info {
        display: block;          /* Flex für Mobile ausschalten */
        text-align: center;
    }

    .hero-event-info span {
        display: inline;         /* Standard: alle inline = gleiche Zeile */
    }

    .hero-event-info span:nth-child(3) {
        display: block;          /* Location in eigene Zeile */
        margin-top: 0.35rem;
    }

    .hero-event-info span:nth-child(2)::before {
        content: "•";            /* Punkt zwischen Datum und Uhrzeit */
        position: relative;
        left: 0;
        margin: 0 0.35rem;       /* kleiner Abstand links/rechts vom Punkt */
    }
}

/* QUOTE */

.section-quote {
    background: #000;
}

.section-quote blockquote {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-quote .quote-author {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    color: var(--color-muted);
}

/* FOOTER */

/* Neuer, cleaner Footer */

.page-footer {
    padding: 2.5rem 0 2rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Links: Impressum / Datenschutz */
.footer-simple-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.page-footer a {
    color: #ffffff;
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}

/* Punkt zwischen den Links */
.footer-separator {
    opacity: 0.6;
}

/* Event-Zeile */
.footer-event {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}
/* Scroll-In Animation */

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* <= 1024px */
@media (max-width: 1024px) {
    .star-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .star-image {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* <= 960px */
@media (max-width: 960px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .hero-content {
        margin-top: 3.8rem;
    }

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

    /* Galerie: etwas kleinere Bilder + engerer Abstand */
    .gallery-track {
        gap: 1.1rem;
    }

    .gallery-item img {
        height: 260px;
    }

    .hero-title {
        font-size: 3.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.18em;
    }

    .statement-item {
        padding: 1.8rem 1.4rem;
    }

    .statement-item p {
        font-size: 0.98rem;
    }
}

/* <= 520px (iPhone etc.) */
@media (max-width: 520px) {
    .ticket-pass-img-wrap::before {
        inset: -12px;
        filter: blur(14px);
        opacity: 0.65;
    }
    .statements-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-title {
        font-size: 3.4rem;
        letter-spacing: 0.22em;
    }

    .hero-event-info {
        flex-direction: column;
        gap: 0.35rem;
    }

    .btn {
        width: 100%;
    }

    /* Galerie: noch engerer Abstand + kompaktere, aber gut sichtbare Bilder */
    .gallery-track {
        gap: 0.8rem;
    }

    .gallery-item img {
        height: 320px;
    }

    .statement-item {
        padding: 1.8rem 1.4rem;
    }

    .statement-item p {
        font-size: 1rem;
        line-height: 1.4;
    }

    /* Ticket-Bild mobile */
    .ticket-pass-img-wrap {
        max-width: 100%;
        margin: 0 auto 1.6rem;
        padding: 0 0.5rem;
    }

    .ticket-cta {
        width: 100%;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        padding: 0.95rem 1.4rem;
    }
}

/* HERO – Desktop vertikal zentrieren */
@media (min-width: 960px) {
    .hero {
        align-items: center;
    }

    .hero-content {
        margin-top: 0;
    }
}

/* HERO – weißer CTA-Button */
.hero-cta {
    background: #ffffff;
    color: #000000 !important;
    border: 1px solid rgba(214, 0, 0, 0.95);
    box-shadow: 0 0 32px rgba(214, 0, 0, 0.95);
}

.hero-cta:hover {
    background: #f5f5f5;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 0 44px rgba(214, 0, 0, 1);
}

/* Mobile: schnellere Galerie */
@media (max-width: 768px) {
    :root {
        --gallery-duration: 20s;
    }
}

@media (max-width: 520px) {
    :root {
        --gallery-duration: 10s;
    }
}

/* Handy-Feintuning für die Galerie */
@media (max-width: 520px) {
    .gallery-track {
        gap: 0.6rem;
    }

    .gallery-item img {
        height: 220px;
    }
}