body {
    font-family: 'Lustria', serif;
    margin: 0;
    padding: 0;
    color: #757081;
    background-color: #f9f9f9;

}

* {
    box-sizing: border-box; /* Inkludiere Padding und Border in die Breite/Höhe */
}

/* Allgemeine Überschrift-Stile */
h1, h2, h3 {
    font-size: 1.8em; /* Einheitliche Schriftgröße */
    margin-bottom: 15px;
    color: #6c4f70; /* Einheitliche Farbe */
    line-height: 1.2; /* Konsistenter Zeilenabstand */
}

/* Spezifische Überschriften */
.about-headline,
.follow-title,
.promo-text h2,
.custom-packages h2,
.reels-promotion h2 {
    font-size: 1.8em; /* Einheitliche Größe */
}

/* Paragraphen-Stile */
.promo-text p,
.custom-packages p,
.reels-promotion p {
    font-size: 1.2em; /* Angleichung an Schriftgrößen */
    line-height: 1.6; /* Einheitlicher Zeilenabstand */
    color: #757081;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #ffffff;
}

.intro-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-color: #f0f0f0; /* Platzhalterfarbe */
}

.intro-text {
   
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.intro h1 {
    margin: 0;
    color: #f9f9f9;
}

.intro p {
    margin: 10px 0;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    color: #6c4f70;
    text-decoration: none;
    border: 3px solid #6c4f70;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #6c4f70;
    color: #ffffff;
}

.button-container {
    text-align: center; /* Zentrieren des Buttons */
    margin-top: 20px;
}

/* Stile für die Team-Sektion */

#intro-slide {
    text-align: center !important;
}

#intro-slide h2, 
#intro-slide p {
   
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 80% !important;
}


.team-slide {
    display: flex;
    justify-content: center; /* Zentriert den gesamten Slider */
    align-items: center; /* Zentriert den Inhalt vertikal */
    max-width: 100%; /* Slider füllt die verfügbare Breite */
    margin: 0 auto; /* Zentriert den Slider auf der Seite */
    padding: 20px; /* Abstand um den Slider herum */
    box-shadow: none; /* Entfernt den Schatten */
    border: none; /* Entfernt den Rand */
}

.team-slide-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    overflow: hidden; /* Verhindert, dass alle Folien gleichzeitig sichtbar sind */
    width: 100%; /* Damit der Slider die gesamte Breite einnimmt */
}

.team-member {
    flex: 0 0 100%;
    opacity: 0; /* Startet unsichtbar */
    transition: opacity 0.5s ease-in-out;
    animation: slideInFromBottom 0.5s ease-in-out; /* Animation für das Einblenden */
    box-sizing: border-box;
    display: none; /* Verstecke zunächst alle Slides */
}


.team-member img {
    max-width: 70%; /* Adjust this percentage as needed */
    height: auto;
    border-radius: 10px;
}


.team-member.active {
    display: block; /* Zeige den aktiven Slide an */
    opacity: 1; /* Voll sichtbar */
}
.slide-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background-color: #6c4f70;
}


.team-member img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Volle Bildschirmgröße für den Slider */
#wedding-locations-slide .team-member {
    color: #f9f9f9;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Bild fullscreen und Vergrößerung bei Hover */
#wedding-locations-slide .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#wedding-locations-slide .team-member:hover .slide-image img {
    transform: scale(1.1); /* Vergrößert das Bild leicht bei Hover */
}

/* Textcontainer mit Hintergrund und zentrierter Position */
#wedding-locations-slide .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Text wird bei Hover eingeblendet */
#wedding-locations-slide .team-member:hover .slide-content {
    opacity: 1;
}

#wedding-locations-slide .slide-content h2 {
    margin-bottom: 10px;
    color: #f9f9f9;
}

#wedding-locations-slide .slide-content p {
    max-width: 800px;
}


/* Stile für die Indikatoren */
.slide-indicators {
    display: flex;
    flex-direction: column; /* Ändert die Anordnung von horizontal zu vertikal */
    align-items: center; /* Zentriert die Punkte */
    margin-top: 20px;
}


.indicator {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 5px 0; /* Erhöht den vertikalen Abstand zwischen den Punkten */
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background-color: #6c4f70; /* Farbe für den aktiven Punkt */
}


/* Styles for responsive display on screens 768px and below */
@media (max-width: 768px) {
    #wedding-locations-slide .team-member {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        text-align: center;
        padding: 20px;
        height: auto; /* Allows dynamic height adjustment based on content */
    }

    #wedding-locations-slide .slide-image {
        width: 100%;
        margin-bottom: 10px; /* Space below the image */
    }

    #wedding-locations-slide .slide-image img {
        transform: none !important; /* Disable scaling */
        transition: none; /* Remove any transition effects */
    }

    #wedding-locations-slide .slide-content {
        position: static; /* Remove fixed positioning */
        background: none; /* Remove background overlay */
        color: inherit; /* Keep default text color */
        padding: 10px; /* Adjust padding if needed */
        width: 100%; /* Ensure full width */
        text-align: left; /* Align text to the left */
        opacity: 1 !important; /* Make sure text is fully visible */
        display: block !important; /* Ensure visibility */
        transform: none; /* Remove any transformations */
    }
    #wedding-locations-slide .team-member:hover .slide-content {
        opacity: 1 !important;
    }
    #wedding-locations-slide .slide-content h2 {
        margin-bottom: 10px;
    }

    #wedding-locations-slide .slide-content p {
        line-height: 1.4;
        margin: 10px 0;
    }

    /* Ensure no hover effects are applied */
    #wedding-locations-slide .team-member:hover .slide-image img,
    #wedding-locations-slide .team-member:hover .slide-content {
        transform: none;
        opacity: 1; /* Make text always visible without hover */
    }
}





.about {
    padding: 50px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.about-text h2 {
    margin-bottom: 10px;
 
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: 100%; /* Füllt die Breite aus */
}



.about-image {
    flex: 0 0 200px; /* Festgelegte Breite für das Bild */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0; /* Entfernt zusätzliche Abstände */
}



.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}


.about-headline {
    text-align: center;
    margin: 0; /* Entfernt zusätzliche Abstände */
}
.about-text {
    flex: 1; /* Nimmt den restlichen Platz im Container ein */
    text-align: left;
    line-height: 1.5; /* Zeilenabstand für bessere Lesbarkeit */
    padding: 10px;
}

.about-text p {
    margin: 10px 0;
    text-align: left;
}


.about-location {
    position: absolute;
    bottom: -40px;
    right: 0;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-location span {
    display: block;
    margin: 5px 0;
}

.slogan {
    color: #6c4f70;
    margin-top: 40px;
    text-align: center;
}

.slogan p {
    margin: 5px 0;
}


.faq {
    padding: 50px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.faq h2 {
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    text-align: left;
}

.faq-question {
    background-color: #6c4f70;
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: background-color 0.3s;
    border-radius: 2px; /* Add this line */
}

.faq-question:hover {
    background-color: #5a3f5a;
}

.faq-answer {
    padding: 0 15px;
    display: none;
    overflow: hidden;
    background-color: #f8f8f8;
    border-left: 5px solid #6c4f70;
    margin-top: 10px;
    border-radius: 2px; /* Add this line */
}

.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 15px 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    list-style-type: disc;
}

.custom-packages {
    text-align: center;
    padding: 50px 20px;
}

.custom-packages h2 {
    margin-bottom: 20px;
}

.custom-packages {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.custom-packages h2 {
    margin-bottom: 20px;
}

.custom-packages p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}



@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
        align-items: center;
    }
    
    .content-text, .instagram-container {
        max-width: 100%;
        margin: 0;
    }
}

/* Stile für Smartphones und kleinere Bildschirme */
@media screen and (max-width: 768px) {
    .button-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }


    .about-container {
        flex-direction: column; /* Bild und Text untereinander auf kleineren Bildschirmen */
        align-items: center; /* Zentriert den Inhalt */
    }



    .about-text {
        max-width: 90%; /* Text auf kleineren Geräten breiter */
    }

    .about-image {
        max-width: 80%; /* Bild auf kleineren Geräten breiter */
    }

    .about-location {
        bottom: -20px;
    }

    .faq-item {
        text-align: center;
    }

    .faq-question {
        text-align: center;
    }

    .custom-packages p {
        text-align: left;
    }
}

.reels-promotion {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.reels-promotion h2 {
    margin-bottom: 20px;
}

.reels-promotion p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reel {
    flex: 1 1 45%;
    max-width: 45%;
    margin: 0;
}

@media (max-width: 768px) {
    .reels-container {
        flex-direction: column;
        align-items: center;
    }
    
    .reel {
        max-width: 100%;
    }
}

.transparent-pricing {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 40px;
}

.transparent-pricing .content-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.transparent-pricing .content-text {
    flex: 1 1 45%;
    margin: 10px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.transparent-pricing .content-text h2 {
    margin-bottom: 10px;
   
}

.transparent-pricing .content-text p {
    line-height: 1.6;
    color: #666;
}

.transparent-pricing .text-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 15px;
}

.reviews .content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9; /* Hintergrundfarbe */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Schatten für Box-Effekt */
    margin: 20px auto;
    max-width: 1200px; /* Maximale Breite der Box */
    border: 1px solid #ddd; /* Rahmen um die Box */
    width: 90%; /* Box nutzt 90% der Breite */
}

.reviews .content-text {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.8; /* Zeilenabstand für bessere Lesbarkeit */
    text-align: justify; /* Text ausrichten, damit er den Platz ausfüllt */
}

.reviews .review-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews .review-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Abgerundete Kanten */
}

.reviews h2 {
    text-align: center; /* Überschrift zentrieren */
    word-break: break-word; /* Längere Wörter umbrechen */
    line-height: 1.2; /* Kleineren Zeilenabstand verwenden */
    margin: 0 15px; /* Horizontaler Abstand für mobilen Komfort */
    padding: 10px 0; /* Vertikale Abstände */
    font-size: 1.5rem; /* Größe anpassen */
}

/* Cookie Banner Styles */
.cookie-banner {
    z-index: 9999; /* Priorität über andere Elemente setzen */
    position: fixed; /* Bleibt am unteren Rand sichtbar */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Halbtransparent */
    color: white;
    text-align: center;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto; /* Klicks auf das Banner erlauben */
}

/* Innerer Inhalt des Cookie-Banners */
.cookie-banner-content {
    max-width: 600px;
    display: flex;
    flex-direction: column; /* Inhalte untereinander anordnen */
    align-items: center;
    text-align: center;
    gap: 1rem; /* Abstand zwischen den Elementen */
}

/* Buttons für Cookie-Optionen */
.cookie-buttons button {
    background-color: #6c4f70; /* Stilvolle violette Farbe */
    color: white;
    border: none;
    padding: 0.7rem 1.5rem; /* Angenehme Größe */
    margin: 0.5rem; /* Abstand zwischen Buttons */
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Weicher Hover-Effekt */
}

/* Hover-Effekt für Buttons */
.cookie-buttons button:hover {
    background-color: #8c658f; /* Helleres Violett beim Hover */
}
.cookie-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cookie-icon:hover {
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 1);
}

/* Für kleinere Bildschirme */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 0.5rem;
    }
    .cookie-banner-content {
        max-width: 90%; /* Breite anpassen */
    }
    .cookie-buttons button {
        width: 100%; /* Buttons über gesamte Breite */
        margin: 0.3rem 0;
    }
}

/* Overlay Styles */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
}

.overlay p {
    color: #000;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
}

.contact-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none; /* Kontakt-Button wird erst nach Cookie-Auswahl angezeigt */
}

/* Stil für den Kontakt-Button */
.contact-button {
    background-color: #6c4f70;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Runde Form */
    border: 3px solid #6c4f70;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.1); /* Schwebende Animation bei Hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Leichter Schatteneffekt */
}

/* Icon im Button: Sprechblase */
.contact-button::before {
    content: "\1F4AC"; /* Unicode für Sprechblase */
    font-size: 28px; /* Größe des Sprechblasen-Icons */
    display: inline-block;
    transition: transform 0.3s ease;
}
.contact-button:hover::before {
   
    transform: scale(1.1); /* Leichte Vergrößerung des Icons beim Hover */
}


.contact-icons {
    display: none;
    margin-top: 10px;
    justify-content: flex-end;
    position: relative;
}
/* Kontakt-Icons Abstand zwischen den Icons */
.contact-icons a {
    margin-left: 15px; /* Größerer Abstand zwischen den Symbolen */
}

.contact-icons img {
    width: 40px;
    height: 40px;
}

.contact-icons.show {
    display: flex;
}

/* Positionierung des Schließen-Buttons */
.close-button {
    position: absolute;
    top: -35px; /* Noch höher positioniert */
    right: 0;
    background-color: #ffffff;
    border: 2px solid #6c4f70; /* Dünnerer Rand */
    border-radius: 2px; /* Abgerundete Ecken */
    color: #6c4f70;
    width: 25px; /* Größe des Schließen-Buttons */
    height: 25px;
    font-size: 14px;
    cursor: pointer;
    display: none; /* Wird angezeigt, wenn die Icons sichtbar sind */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icons.show .close-button {
    display: block;
}


.contact-icons.show .close-button {
    display: block;
}



.messe-promotion {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.promo-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: left;
}

.promo-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.promo-text {
    flex: 1;
    max-width: 50%;
}

.promo-text h2 {
    margin-bottom: 15px;
    color: #6c4f70;
}

.promo-text p {
    line-height: 1.6;
    color: #757081;
}

.promo-video-container {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.promo-video {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.follow-title {
    margin-top: 20px;
    font-weight: bold;
    color: #6c4f70;
}


.content-text, .instagram-container {
    flex: 1 1 45%;
    max-width: 45%;
    margin: 0 20px;
}
.instagram {
    padding: 50px 20px;
    text-align: center;
}

.elfsight-app {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 auto !important;
}


.instagram {
    width: 100%;
    max-width: 1600px;
    margin: 40px auto;
    text-align: center;
    display: block !important; /* Flex vermeiden */
    overflow: visible;
}

.instagram .elfsight-app-08b8d80d-bdf9-46ba-bdff-3104f3e957e6,
.instagram .elfsight-app {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    text-align: center !important;
    position: static !important;
}



    .instagram-container {
        width: 100%; /* Vollbildbreite */
        max-width: 1600px; /* Maximale Breite für größere Bildschirme */
        margin: 20px auto; /* Abstand oben und unten auf 20px reduzieren */
        position: relative;
        display: flex;
        justify-content: center; /* Zentrieren */
        align-items: center;
        padding: 0; /* Keine zusätzlichen Abstände innerhalb des Containers */
        background-color: #f5f5f5; /* Optional: Hintergrundfarbe */
    }
    


.instagram-container.blur blockquote {
    filter: blur(5px);
}

.instagram-container.blur {
    filter: blur(8px);
    pointer-events: none;
}

.instagram-container.active {
    filter: none;
    pointer-events: auto;
}

.instagram-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    text-align: center;
}

.instagram-container .overlay.hidden {
    display: none;
}



/* Responsive Layout */
@media (max-width: 768px) {
    .transparent-pricing .content-text,
    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .promo-text, .promo-video-container {
        max-width: 100%;
    }

    .promo-video {
        max-width: 90%;
    }
    #instagram-feed {
        padding: 10px; /* Weniger Innenabstand */
    }

    #instagram-feed .elfsight-app-08b8d80d-bdf9-46ba-bdff-3104f3e957e6 {
        width: 100%; /* Verwendet die gesamte Breite */
        max-width: 90%; /* Maximal 90% der Bildschirmbreite */
        margin: 0 auto; /* Zentriert den Inhalt */
    }
    .transparent-pricing .content-row
    {
        flex-direction: column;
        width: 100%;
        padding: 10px; /* Weniger Padding */
        margin: 5px 0; /* Weniger Abstand oben und unten */
    }

    .transparent-pricing .content-text
   {
        max-width: 100%; /* Volle Breite */
        margin: 0;
        padding: 15px;
    }

    .transparent-pricing .text-image
   {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 10px; /* Behalte die runden Kanten */
    }
    /* Spezifischere Regeln für die Reviews-Sektion */
    .reviews .content-row {
        flex-direction: column;
        width: calc(100% - 20px); /* Box nutzt die Breite minus Padding */
        margin: 10px auto;
        border: 1px solid #ddd; /* Rahmen sichtbar halten */
        background-color: #f9f9f9; /* Hintergrund bleibt */
    }

    .reviews .content-text {
        text-align: justify; /* Gleichmäßige Textausrichtung */
        width: 100%; /* Volle Breite der Textbox */
        max-width: none; /* Entfernt eventuelle Begrenzungen */
        padding: 10px 15px; /* Weniger Abstand in mobilen Ansichten */
        width: calc(100% - 30px); /* Breite reduziert, um Abstand zu erzeugen */
        font-size: 1rem; /* Lesbare Schriftgröße */
        line-height: 1.8; /* Besserer Zeilenabstand */
    }

    .reviews .review-image-container {
        margin-top: 15px;
        width: 100%; /* Bildcontainer passt sich an */
    }

    .reviews .review-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }
}

/* Wedding Locations – Karten-Galerie (SB Snaps) */
.wedding-locations {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.wl-header {
  max-width: 1100px;
  margin: 0 auto 24px;
  text-align: center;
}

.wedding-locations h2 {
  font-size: 2rem;
  color: #6c4f70;
  margin: 0 0 10px;
  font-family: 'Lustria', serif;
}

.wl-intro {
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
  color: #757081;
}

.wl-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* größerer Mindestwert = „größerer Rahmen“ */
  gap: 2rem;
  max-width: 1200px;
  margin: 24px auto 0;
}

.wl-card {
  display: block;
  padding: 1.6rem; /* größerer Innenabstand = breiterer weißer Rahmen */
  border-radius: 8px;
  background-color: #fff;
  text-decoration: none;
  transition: transform 300ms ease-in, box-shadow 300ms ease-in;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.08),
    0 8px 24px rgba(0,0,0,0.06);
  color: inherit;
}

.wl-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(0,0,0,0.10),
    0 14px 32px rgba(0,0,0,0.08);
}

.wl-card:focus { outline: 2px solid #6c4f70; }

.wl-card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.wl-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 500ms linear;
}

.wl-card-wrapper:hover img { transform: scale(1.06); }

.wl-hidden-cover {
  position: absolute; inset: 0;
  transform: scaleY(0);
  transition: transform 250ms ease-in;
  background: linear-gradient(transparent 5%, rgba(0,0,0,0.55));
  transform-origin: top;
}

.wl-card-wrapper:hover .wl-hidden-cover { transform: scaleY(1); }

.wl-card h4 {
  position: absolute; z-index: 2; bottom: 0; right: 1.2rem;
  margin: 0;
  font-size: 1.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-family: 'Lustria', serif;
  color: #fff;
  letter-spacing: 0.5px;
  transform: translateY(110%);
  transition: transform 250ms ease-out;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.wl-card-wrapper:hover h4 { transform: translateY(-1.2rem); }

.wl-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: #757081;
}

.wl-experience {
  display: inline-block;
  font-weight: 600;
  color: #6c4f70;
}

.wl-cta {
  text-align: center;
  margin-top: 22px;
}
.wl-cta .button {
  margin-left: 6px;
}

/* Responsiv */
@media (max-width: 768px) {
  .wl-card-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .wl-card { padding: 1.2rem; }
  .wl-card h4 { font-size: 1.1rem; right: 1rem; }
}
