/* Allgemeine Stile */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2f2f2f;
    color: #333333;
}

/* Header-Stile */
.header{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    background-color: #2f2f2f;
    }
.sticky{
    padding: 5px 100px;
    background-color: #fff;
    left: 0px;
    transition: 0.6s;
    top: 0px;
}

.header ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header ul li{
    position: relative;
    list-style: none;

}
.header ul li a{
    position: relative;
    margin: 0 20px;
    text-decoration: none;
    color: #e2e2e2;
    font-weight: bold;
    transition: 0.6s;

}

.header a::after{
    content: "";
    position: absolute;
    background-color: #f289bc;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.header a:hover::after{
    width: 110%;
}

.header img{
    width: 150px;
    height: auto;
    transition: 0.6s;
    text-shadow: 0 0 8px white ;
    left: 50px;
}

.sticky ul li a{
    color: #000;
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bolder;
}
.sticky .logo{
    color: #000;

}

.sticky a::after{
    content: "";
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.sticky .header a:hover{
    color: #000;
}

.sticky .header a:hover::after{
    width: 110%;
}
/* Startseite-Stile */
.startseite {
    position: relative;
    height: 100vh; /* 100% Viewport Height, um die volle Bildschirmhöhe zu nutzen */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Verhindert, dass das Video die Scrollleiste erzeugt */
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-video video {
    object-fit: cover; /* Das Video füllt den gesamten verfügbaren Bereich aus */
    width: 100%;
    height: 100%;
}

.content {
    text-align: center;
    color: #ffffff;
    font-family: 'Caveat', cursive;
    z-index: 1; /* Der Text sollte über dem Video erscheinen */
}

.content h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.content p {
    font-size: 24px;
}

.Hochzeiten {
    margin-top: 60px;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #2f2f2f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Hochzeit {
    width: 48%; /* Anpassen der Breite, um 2 Bilder nebeneinander zu platzieren */
    background-color: #ffffff;
}

.Hochzeit img {
    width: 100%; /* Das Bild wird die gesamte Breite des Containers einnehmen */
    height: auto; /* Das Seitenverhältnis des Bildes bleibt erhalten */
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.services {
    font-size: 20px;
    margin-top: 40px;
    text-align: center;
    color: white;
}

.services ul {
    list-style: none;
    padding: 0;
    font-family: 'Caveat', cursive;
    font-size: larger;

}

.services li{
    opacity: 0;
}

.testimonials {
    margin-top: 60px;
    padding: 40px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #2f2f2f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 130px;
}

.testimonial {
    width: 48%; /* Anpassen der Breite, um 2 Bilder nebeneinander zu platzieren */
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
    }

.testimonial p {
    margin-top: 10px;
    text-align: center;
}


/* Leistungen-Stile */
.leistungen {
    padding: 40px;
    background-color: #ffffff;
}

.service-description {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-description h2 {
    font-size: 24px;
    margin-right: 20px;
}

.service-description img {
    width: 200px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Referenzen-Stile */
.referenzen {
    padding: 40px;
    background-color: #f5f5f5;
}

.gallery {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery img {
    width: 30%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ueber-uns {
    padding: 40px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
}

.ueber-uns img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 40px; /* Änderung hier: margin-right statt margin-left */
}

.description{
    overflow: hidden;
    border-right: 3px solid #000; /* Optional: Simuliert den Schreibeffekt */
    color: #2f2f2f;
}

.ueber-uns img,
.description {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

/* Kontakt-Stile */
.kontakt {
    padding: 40px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-form {
    flex: 0 0 50%;
    max-width: 500px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-details {
    flex: 0 0 40%;
    text-align: center;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-details img {
    width: 200px;
    margin-top: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer-Stile */
footer {
    background-color: #444444;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 5px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsives Design */
@media screen and (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-navigation li {
        margin: 10px 0;
    }

    .main-navigation a {
        font-size: 16px;
    }

    .contact-form,
    .contact-details {
        flex: 0 0 100%;
    }
}
