/* 1. Container & Hintergrund-Setup */
.hero-header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    /* Tipp: filter: brightness(0.8); hier einfügen, falls Bild zu hell */
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    
    background: rgba(0, 0, 0, 0.0); /* Dezente Abdunklung */
    color: #000;
    
    padding: 20px;
}

/*.hero-content-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    /* Positioniert den Inhalt unten rechts 
    justify-content: flex-end; 
    align-items: flex-end;     
    background: rgba(0, 0, 0, 0.3);
    padding: 40px; /* Abstand vom Rand 
}


/* 2. Der Glossy Video-Button (OAG Design) */
.video-play-btn {
    margin-top: 20px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.video-play-btn .play-icon {
    width: 110px;  /* Etwas breiter für den Look aus dem Bild */
    height: 70px;
    /* Glossy Verlauf von Hellblau zu OAG-Dunkelblau */
    background: linear-gradient(180deg, #4da6ff 0%, #014385 100%);
    border-radius: 15px; /* Abgerundete Ecken wie im Bild */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(1, 67, 133, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    animation: oagVideoPulse 2s infinite;
    overflow: hidden; /* Für den Glanzeffekt wichtig */
    border: 3px solid black;
    
}

/* Der weiße Glanz-Reflex (obere Hälfte) */
.video-play-btn .play-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
}

/* Das Play-Dreieck */
.video-play-btn .play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    z-index: 2;
}

/* 3. Animationen & Hover */
@keyframes oagVideoPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(1, 67, 133, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(1, 67, 133, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(1, 67, 133, 0); }
}

.video-play-btn:hover .play-icon {
    background: #0056b3; 
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 0 30px rgba(1, 67, 133, 0.8), inset 0 2px 5px rgba(255, 255, 255, 0.8);
    filter: brightness(1.1);
}

.video-play-btn .btn-label {
    margin-top: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

