/* Grundlegendes Styling für den Header */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Volle Höhe des Viewports */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Standard-Hintergrundbild (für große Bildschirme) */
.hero {
    background-image: url('img/header2.jpg');
}

/* Media Queries für verschiedene Bildschirmgrößen */
@media (max-width: 1536px) {
    .hero {
        background-image: url('img/header2-1536x864.jpg');
    }
}

@media (max-width: 1024px) {
    .hero {
        background-image: url('img/header2-1024x576.jpg');
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('img/header2-768x432.jpg');
    }
}

@media (max-width: 300px) {
    .hero {
        background-image: url('img/header2-300x169.jpg');
    }
}

/* Overlay für den Textbereich */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(1, 69, 98, 1); /* Sicherstellen, dass kein Transparenzeffekt vorliegt */
    border: 5px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 15px;
    padding: 2em;
}

@keyframes separator-width {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Separator Styling */
.separator {
    border-top: 0.3em solid white !important;
    display: block;
    width: 0; /* Startet bei 0 */
    margin: 10px auto; /* Zentrieren */
    animation: separator-width 1.1s ease-in forwards;
    opacity: 1.0;
}


/* Logo-Styling */
.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.arrow-down-circle-fill {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2em;
    color: white;
    text-decoration: none;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.py-5{
    background-color: rgba(1, 69, 98, 1);
    color:white;
    position: relative; /* Pfeil springt nicht aus dem Bereich */
}

.flip-card{
    background-color: transparent;
    border-style: none;
    display: inline-block;
    height: auto;
    max-width: 100%;
    transition: transform 0.6s;
}

.img-fluid{
    border-style: none;
    border-radius: 25px;
}

.flip-card:hover{
    transform: rotateY(180deg);
}

.btn-primary{
    background-color: rgba(1, 69, 98, 1);
    border: rgba(1, 69, 98, 1);
    border-radius: 25px;
}

.btn-primary:hover{
    background-color: #6c757d;
    border: #6c757d;
}


/* Überschrift anpassen */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Text anpassen */
p {
    font-size: 1.2rem;
}

#data{
    background-color: #ffffff;
    color: rgba(1, 69, 98, 1);
    padding: 1em;
}

.footer-logo {
    width: 150px; /* Größe anpassen */
    height: auto;
    border-radius: 15px;
}
