/* =========================================================
   HERO – COMPACT CENTERED CINEMATIC LAYOUT
========================================================= */

#hero {
    position: relative;
    min-height: 100vh;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

/* Background Video */
#hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.08) saturate(1.1);
    z-index: -1;
}

/* =========================================================
   GRID & LAYOUT
========================================================= */

.hero-inner {
    display: flex;
    flex-direction: column;                 /* Zentriert alles */
    align-items: center;
    justify-content: center;
    width: min(900px, 92%);
    margin: 0 auto;

    opacity: 0;                              /* Animation Start */
    animation: heroFade 1.2s ease-out forwards;
    animation-delay: .2s;
}

/* Fade animation */
@keyframes heroFade {
    0%   { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   TEXTBLOCK – dezente Glass Optik
========================================================= */

.hero-text {
    padding: 2rem 2.4rem;
    max-width: 520px;

    background: rgba(0, 0, 0, 0.175);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.352);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.767);

    text-align: center;
}

/* =========================================================
   TYPOGRAPHY + ANIMATION
========================================================= */

.hero-kicker {
    font-size: 1rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #f8d8aa;
    font-weight: 600;
    margin-bottom: 1rem;

    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
    animation-delay: .45s;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;

    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: .65s;
}

.hero-sub {
    font-size: 1.05rem;
    color: #f4f1ed;
    opacity: 0.92;
    max-width: 480px;
    margin-bottom: 1.6rem;

    opacity: 0;
    animation: fadeUp 1.1s ease forwards;
    animation-delay: .85s;
}

/* Shared element fade animation */
@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CTA BUTTONS – kleiner & klarer
========================================================= */

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;

    opacity: 0;
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 1.05s;
}

.hero-actions .btn {
    padding: 0.7rem 1.4rem !important;
    font-size: 0.9rem;
    border-radius: 12px !important;
    font-weight: 600;
    border: 1px solid rgba(255, 220, 170, 0.2);
    transition: 0.28s ease;
    transform: scale(0.95);
}

.hero-actions .btn.btn-primary {
    background: linear-gradient(135deg, #ffd49a, #ff9d54);
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(255, 160, 90, 0.45);
}

.hero-actions .btn.btn-outline {
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
}

.hero-actions .btn:hover {
    transform: translateY(-3px) scale(1.02);
}

/* =========================================================
   META TAGS – kompakt
========================================================= */

.hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;

    opacity: 0;
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 1.25s;
}

.hero-meta span {
    padding: 0.35rem 0.8rem;
    background: rgba(0,0,0,0.55);
    border-radius: 999px;
    border: 1px solid rgba(255, 200, 150, 0.22);
    font-size: 0.78rem;
    color: #ffe6c9;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}
