body {
    margin: 0;
    font-family: Arial, sans-serif;
}



#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

#hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20vh;
}

.hero {
    position: relative;
    overflow: hidden;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-text {
    position: relative;
    z-index: 1;
}

#locations img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#contact {
    padding-top: 80px; /* Abstand für festen Header */
    padding-bottom: 60px; /* Platz für Footer */
}

footer {
    position: relative;
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}

.btn-success {
    background-color: #a0e226;
    border-color: #a0e226;
}

.btn-success:hover {
    background-color: #8bc12c;
    border-color: #8bc12c;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

.form-control, .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

/* Allgemeine Stile für die Standortbilder */
#services .row div, .location-image {
    border-radius: 15px; /* Runde Ecken */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth Transition für Animationen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Leichter Schatten */
}

/* Animation beim Mouseover */
.location-image:hover {
    transform: scale(1.05); /* Vergrößert das Bild leicht */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Stärkerer Schatten beim Hover */
}

#services .row div {
    margin: 10px;
}