/* ================================================================
   inline-hockey.css – Styles fuer die InlineHockey-Seite
   ================================================================ */

/* Hero / Parallax */
.ih-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ih-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
    z-index: 1;
}

.ih-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.ih-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 3px 16px rgba(0,0,0,.5);
    margin-bottom: 14px;
}

.ih-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.9);
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
    margin: 0;
}

.ih-hero-badge {
    display: inline-block;
    background: #F15B00;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(241,91,0,.4);
}

/* Video-Karte – ueberschreibt Canvas-Theme video{opacity:0} */
.ih-video-card {
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
}

.ih-video-card video {
    width: 100% !important;
    height: auto !important;
    max-height: 630px !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10 !important;
    min-height: 200px;
    background: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .ih-hero {
        min-height: 300px;
        background-attachment: scroll;
    }

    .ih-hero-content h1 {
        font-size: 1.8rem;
    }

    .ih-hero-content p {
        font-size: .95rem;
    }
}
