/* ============================================
   HERO – angepasst an Dark-Theme
   ============================================ */

/* ── Desktop Hero ── */
.hero {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100vh;
}

.hero-mobile {
    display: none;
}

/* ── Linke Seite ── */
.hero-left {
    width: 100%;
    height: 100vh;
    background-color: #111111;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    place-items: center;
    padding: min(5em, 10%);
    box-sizing: border-box;
    position: relative;
    border-right: 1px solid #3a1010;
}

.hero-left > * {
    position: relative;
    z-index: 1;
}

.hero-left img {
    width: 70%;
    height: auto;
}

/* ── Headline ── */
.headline {
    margin: 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 2.2vw, 2rem);
    text-align: center;
    color: #ffffff;
}

.headline h2 {
    margin: 0 0 0.4rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    color: #ffffff;
    line-height: 1.3;
}

.headline p {
    font-size: smaller;
    color: #888888;
    margin: 0;
}

/* ── Info-Bereich ── */
.hero-information {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 0.5rem;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    width: 50%;
}

.hero-information p {
    margin: 0;
    color: #cccccc;
    background: #1e1e1e;
    border: 1px solid #3a1010;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.hero-information p:hover {
    border-color: rgb(220, 65, 65);
    background: #2a0e0e;
}

/* ── Rechte Seite ── */
.hero-right {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-right img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Leichter Dunkel-Overlay über dem Bild */
.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #111111 0%, transparent 15%);
    pointer-events: none;
}

/* ══════════════════════════════════════════
   MOBILE HERO
   ══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero {
        display: none;
    }

    .hero-mobile {
        width: 100%;
        height: 100vh;
        overflow: hidden;
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 125px auto 1fr;
        position: relative;
    }

    /* Video als Vollbild-Hintergrund */
    .hero-mobile video {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    /* Dunkler Overlay über dem Video */
    .hero-mobile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.15) 40%,
            rgba(0,0,0,0.5) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    /* Navbar */
    .hero-mobile .navbar {
        width: 100%;
        height: 125px;
        position: relative;
        z-index: 2;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-mobile .navbar img {
        width: auto;
        height: 65px;
    }
}

/* ══════════════════════════════════════════
   MOBILE INFO BANNER
   ══════════════════════════════════════════ */
.info-banner {
    display: none;
}

@media (max-width: 1200px) {
    .info-banner {
        display: block;
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%) translateY(calc(100% + 60px));
        z-index: 50;
        width: min(88vw, 360px);

        background: rgba(17, 17, 17, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid #6b1c1c;
        border-radius: 16px;
        padding: 22px 24px 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px #3a1010;

        animation: bannerSlideUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
    }

    @keyframes bannerSlideUp {
        to { transform: translateX(-50%) translateY(0); }
    }

    .info-banner.closing {
        animation: bannerSlideDown 0.45s cubic-bezier(0.55, 0, 1, 0.45) forwards !important;
    }

    @keyframes bannerSlideDown {
        from { transform: translateX(-50%) translateY(0); opacity: 1; }
        to   { transform: translateX(-50%) translateY(calc(100% + 60px)); opacity: 0; }
    }

    /* Roter Akzentstreifen oben am Banner */
    .info-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 16px 16px 0 0;
    }

    /* Schließen-Button */
    .banner-close {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #2a0e0e;
        border: 1px solid #6b1c1c;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        color: rgb(220, 65, 65);
        font-size: 13px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease, transform 0.2s ease;
        line-height: 1;
    }

    .banner-close:active {
        transform: scale(0.88);
        background: #3a1010;
    }

    /* Banner Titel */
    .banner-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 14px;
        text-align: center;
        letter-spacing: 0.02em;
    }

    /* Banner Infos */
    .banner-info {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .banner-info p {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.88rem;
        color: #cccccc;
        margin: 0;
        padding: 7px 12px;
        background: #1e1e1e;
        border-radius: 8px;
        border: 1px solid #3a1010;
    }

    .banner-days {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
    width: 100%;
}

.banner-day-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(220, 65, 65, 0.35);
    border-radius: 7px;
    padding: 0.55rem 0.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    position: relative;
    overflow: hidden;
}

.banner-day-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgb(220, 65, 65);
}

.banner-day-label {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(220, 65, 65);
}

.banner-day-time {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    white-space: nowrap;
}
}

.hero-days {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
}

.hero-day-card {
    background: #1e1e1e;
    border: 1px solid #3a1010;
    border-radius: 8px;
    padding: 0.85rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
}

.hero-day-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgb(220, 65, 65);
}

.hero-day-label {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgb(220, 65, 65);
}

.hero-day-time {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
}

