/* Grundaufbau */
body,
html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.slideshow-container::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.45)
        );

    z-index: 1;
}
.slideshow-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    /* FIX: Bilder füllen den Screen ohne Verzerrung */
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Schneidet Bild passend zu, ohne zu verzerren */
        display: block;
    }


    /* Container, der das milchige Glas erzeugt */
    .logo-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 20;
        pointer-events: none;
    }

.logo-wrapper {
    position: absolute;
    top: 30px;
    left: 30px;

    transform: none;
}

    .main-logo {
        width: 250px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
@media (max-width: 768px) {

    .logo-wrapper {
        top: 15px;
        left: 15px;
    }

    .main-logo {
        width: 140px;
        padding: 10px;
    }

}
    /* Handschrift-Text */
    .handwriting-text {
        position: absolute;
        top: 88%;
        /* Etwas unterhalb des Buttons (der auf 80% liegt) */
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Dancing Script', cursive;
        /* WICHTIG: Google Font einbinden! */
        font-size: 2rem;
        color: white;
        opacity: 0;
        animation: writeText 3s ease-in-out 1.5s forwards;
    }

    @keyframes writeText {
        from {
            opacity: 0;
            transform: translate(-50%, 20px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        /* Zentriert den Button horizontal */
        align-items: center;
        /* Zentriert den Button vertikal */
        z-index: 100;
        /* WICHTIG: Höher als das Bild/Video */
        pointer-events: none;
        /* Lässt Klicks durch das Overlay zum Button */
    }

 
.start-btn {
    padding: 18px 45px;

    background: transparent;

    border: 1px solid rgba(255,255,255,.8);

    color: white;

    border-radius: 50px;

    letter-spacing: 2px;

    transition: .4s ease;
}

.start-btn:hover {
    background: white;
    color: black;

    transform: translateY(-3px);
}

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Der neue Glas-Footer über die ganze Breite */
    .glass-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80px;
        /* Höhe des Footers */

        /* Glas-Effekt */
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.3);

        /* Text-Ausrichtung */
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-family: 'Dancing Script', cursive;
        /* Deine Handschrift */
        font-size: 1.8rem;
        z-index: 20;
    }

    /* Erzwingt Weiß für alle Zustände im Footer */
    .glass-footer a,
    .glass-footer a:visited,
    .glass-footer a:link {
        color: #ffffff !important;
        text-decoration: none;
    }

    /* Speziell für die Portfolio-Seite */
    .portfolio-page {
        background-color: #000;
        color: #fff;
        padding: 40px;
    }

    /* Galerie-Container: Grid sorgt für gleichmäßige Anordnung */
    .gallery-grid {
        display: grid;
        /* Spalten passen sich automatisch an, min. 300px breit */
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        /* Abstand zwischen den Bildern */
        padding: 20px;
    }

    /* Item-Container: Entfernt den grauen Hintergrund */
    .gallery-item {
        position: relative;
        /* Wichtig für die Positionierung des Textes */
        display: block;
        text-decoration: none;
        overflow: hidden;
        border-radius: 8px;
    }

    .image-text {
        position: absolute;
        top: 10%;
        /* Vertikal zentriert */
        left: 50%;
        /* Horizontal zentriert */
        transform: translate(-50%, -50%);
        /* Exakte Ausrichtung zur Mitte */

        width: 100%;
        padding: 0;

        /* Hintergrund und Blur entfernt */
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        /* Text-Design */
        color: white;
        font-size: 2rem;
        /* Etwas größer für bessere Sichtbarkeit */
        font-weight: bold;
        text-align: center;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        /* Schatten für bessere Lesbarkeit */
        z-index: 2;
        pointer-events: none;
        /* Klicks gehen durch den Text auf das Bild/Link */
    }

    /* Bilder: Füllen den Container perfekt aus */
    .gallery-item img {
        width: 100%;
        height: 100%;
        /* Nimmt die volle Höhe des Grid-Elements ein */
        object-fit: cover;
        /* Schneidet das Bild so, dass es immer perfekt passt */
        display: block;
        transition: transform 0.3s ease;
    }


    .gallery-item img:hover {
        transform: scale(1.02);
    }

    .back-btn {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
    }

    /* Container für das Video */
    .video-background {
        position: fixed;
        /* Fixiert es auf dem Bildschirm */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        /* Legt es hinter alle anderen Elemente */
        overflow: hidden;
    }

    .video-background video {
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        /* Sorgt dafür, dass das Video den ganzen Screen füllt */
    }
.video-background::after {
    content:"";
    position:absolute;
    inset:0;

    background: rgba(0,0,0,.45);
}
    /* Deine Galerie-Kacheln brauchen jetzt einen leichten Filter, 
   damit der Text auf dem bewegten Video gut lesbar bleibt */
    .gallery-item {
        background: rgba(0, 0, 0, 0.4);
        /* Dunkler Filter über dem Video für Kontrast */
    }

    /* Styling für die einzelnen Projektseiten */
    .project-page {
        background: #000;
        color: white;
        font-family: sans-serif;
        padding: 40px;
    }

    .content-container {
        max-width: 1000px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.1);
        /* Transparenter Hintergrund */
        backdrop-filter: blur(15px);
        /* Glas-Effekt */
        padding: 40px;
        border-radius: 15px;
    }

    /* Der Button-Container oben links */
    .back-nav {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 900;
    }

    .back-nav a {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.1);
        /* Gleicher Glas-Look wie deine Kacheln */
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        /* Schön abgerundet */
        color: white;
        text-decoration: none;
        font-size: 0.9rem;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .back-nav a:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(-5px);
        /* Kleiner "Zurück"-Effekt */
    }

    /* Container für den Zurück-Button */
    .back-home-nav {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1000;
        /* Muss sichtbar sein, aber unter dem Hamburger-Menü */
    }

    .back-home-nav a {
        display: flex;
        align-items: center;
        padding: 12px 25px;
        background: rgba(255, 255, 255, 0.1);
        /* Transparenter Glas-Look */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .back-home-nav a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        /* Leichter Zoom-Effekt beim Drüberfahren */
    }

    .toggler {
    position: absolute;
    top: 0;
    right: 0;

    width: 65px;
    height: 65px;

    opacity: 0;
    cursor: pointer;

    z-index: 10002;
}
  

    .hamburger {
        position: relative;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 5px;
        z-index: 10001;
}

    /* --- DEIN BESTEHENDER HAMBURGER-CODE --- */
    .hamburger>div {
        width: 30px;
        height: 3px;
        background: #fff;
        position: relative;
        transition: all 0.4s ease;
    }

    .hamburger>div::before,
    .hamburger>div::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background: #fff;
        top: -10px;
        transition: all 0.4s ease;
        /* transition hier wichtig! */
    }

    .hamburger>div::after {
        top: 10px;
    }

    /* --- HIER KOMMT DIE NEUE ANIMATION FÜRS X --- */
    .toggler:checked+.hamburger>div {
        transform: rotate(135deg);
        /* Dreht die mittlere Linie zum X */
        background: #fff;
    }

    .toggler:checked+.hamburger>div::before,
    .toggler:checked+.hamburger>div::after {
        top: 0;
        transform: rotate(90deg);
        /* Dreht die oberen/unteren Linien zum X */
    }

    /* Suche diesen Block in deiner CSS und ändere ihn so: */
.menu {
    position: fixed;
    top: 0;
    right: -380px;

    width: 380px;
    max-width: 90vw;
    height: 100vh;

    background: rgba(15,15,15,.92);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border-left: 1px solid rgba(255,255,255,.08);

    transition: .5s ease;

    z-index: 9999;

    display: flex;
    flex-direction: column;
}
.menu-logo {
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: center;
}

.menu-logo img {
    width: 180px;
    max-width: 80%;
}

.toggler:checked ~ .menu {
    right: 0;
}

/* =======================================
   HAMBURGER MENU PREMIUM VERSION
======================================= */

/* Menü-Button */
.menu-wrap {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 10001;
}

.toggler {
    position: absolute;
    width: 60px;
    height: 60px;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
}

.hamburger {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.1);

    box-shadow:
        0 8px 30px rgba(0,0,0,.25);

    transition: .4s ease;
}

.hamburger:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,.15);
}

/* Linien */

.hamburger div {
    position: relative;
    width: 28px;
    height: 2px;
    background: white;
    transition: all .4s ease;
}

.hamburger div::before,
.hamburger div::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 2px;
    background: white;
    transition: all .4s ease;
}

.hamburger div::before {
    top: -9px;
}

.hamburger div::after {
    top: 9px;
}

/* X Animation */

.toggler:checked + .hamburger div {
    transform: rotate(225deg);
}

.toggler:checked + .hamburger div::before {
    top: 0;
    transform: rotate(90deg);
}

.toggler:checked + .hamburger div::after {
    top: 0;
    transform: rotate(90deg);
}

/* =======================================
   FULLSCREEN MENU
======================================= */

.menu {
    position: fixed;
    top: 0;
    right: -350px;

    width: 350px;
    height: 100vh;

    background: rgba(20,20,20,.92);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border-left: 1px solid rgba(255,255,255,.1);

    transition: right .5s ease;

    z-index: 9999;

    display: flex;
    flex-direction: column;
}

/* Menü öffnen */

.toggler:checked ~ .menu {
    right: 0;
}

/* Menü-Inhalt */

.menu-grid {
    display: flex;
    flex-direction: column;

    gap: 25px;

    padding-left: 50px;
}


/* Menüpunkte */

.menu-tile {
    color: white;
    text-decoration: none;

    font-size: 1.6rem;
    font-weight: 300;

    transition: .3s ease;
}

.menu-tile:hover {
    color: #D4AF37;
    transform: translateX(10px);
}

.toggler:checked ~ .menu .menu-tile {
    opacity: 1;
    transform: translateY(0);
}

.menu-tile:nth-child(1) {
    transition: .5s ease .1s;
}

.menu-tile:nth-child(2) {
    transition: .5s ease .2s;
}

.menu-tile:nth-child(3) {
    transition: .5s ease .3s;
}

.menu-tile:nth-child(4) {
    transition: .5s ease .4s;
}

.menu-tile:nth-child(5) {
    transition: .5s ease .5s;
}

.menu-tile:nth-child(6) {
    transition: .5s ease .6s;
}

.menu-tile:hover {
    color: #D4AF37;
    transform: translateX(15px);
}

/* Goldene Linie */

.menu-tile::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: #d4af37;

    transform: translateX(-50%);
    transition: .4s ease;
}
.menu-tile::before {
    content: "";

    position: absolute;
    left: -40px;
    top: 50%;

    width: 0;
    height: 1px;

    background: #D4AF37;

    transition: .4s ease;
}

.menu-tile:hover::before {
    width: 25px;
}

.menu-tile:hover::after {
    width: 100%;
}

/* Mobile */

@media (max-width: 768px) {

    .menu {
        width: 280px;
        right: -280px;
    }

    .menu-logo img {
        width: 140px;
    }

    .menu-tile {
        font-size: 1.3rem;
    }
}



/* Die freistehenden Kacheln */
.menu-tile {
    background: transparent;
    /* Kein Hintergrund */
    border: none;
    /* Kein Rahmen */
    color: white;
    /* Weiße Schrift */
    font-size: 2.5rem;
    /* Groß und präsent */
    font-weight: 300;
    /* Etwas feinerer Schriftschnitt wirkt edler */
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: left;
    /* Links ausgerichtet */
}

/* Hover-Effekt: Nur eine subtile Farbänderung */
.menu-tile:hover {
    color: #808080;
    /* Wird beim Drüberfahren grau */
    padding-left: 10px;
    /* Kleiner Effekt nach rechts */
}

.intro-section {
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    background: #000;
    /* Hintergrund passend zum Rest */
}

.intro-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
    /* Deine Handschrift */
}

.picdrop-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.picdrop-button:hover {
    background: white;
    color: black;
}

.hochzeit-info {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    /* Dezenter Glas-Look */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: white;
    text-align: center;
    line-height: 1.6;
}

.hochzeit-info h2 {
    font-family: 'Dancing Script', cursive;
    /* Falls du deine Handschrift-Schriftart nutzt */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hochzeit-info p { /* Diesen Selektor mit der Klammer musst du hinzufügen! */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Der Body als vertikale Flexbox */
body.project-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Hauptinhalt schiebt den Footer nach unten */
.content-container {
    flex: 1;
}

/* Footer klebt am Boden */
.main-footer {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    /* Abstand zum Inhalt */
}

.footer-logo {
    height: 30px;
    margin-right: 20px;
}

.footer-content a {
    color:white;
    text-decoration:none;
}

/* Zentrierung und Schriftart für die Überschrift */
h1 {
    text-align: center;
    /* Zentriert den Text */
    font-family: 'Dancing Script', cursive;
    /* Wendet die geschwungene Schrift an */
    font-size: 3.5rem;
    /* Macht die Schrift schön groß und präsent */
    color: white;
    margin: 40px 0;
    /* Gibt oben und unten etwas Platz */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    /* Leichter Schatten für bessere Lesbarkeit */
}

.fotobox-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 30px;
}

.fotobox-image {
    flex: 1;
}

.fotobox-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.fotobox-text {
    flex: 1;
    color: white;
}

.fotobox-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
}

.fotobox-text ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.fotobox-text li {
    margin-bottom: 10px;
}

/* Responsive: Auf dem Handy untereinander */
@media (max-width: 768px) {
    .fotobox-wrapper {
        flex-direction: column;
    }
}

/* Layout für Über mich - spiegelt die Fotobox-Logik wider */
.about-wrapper {
    display: flex;
    align-items: flex-start;
    /* Bild oben ausrichten */
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 30px;
    color: white;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-top: 0;
}

.about-text p {
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive auf Handy */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
    }
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: white;
}

.contact-box h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
    font-size: 1.2rem;
    line-height: 2;
}

.contact-details a {
    color: #e1e1e1;
    /* Ein schönes Blau für die Links */
    text-decoration: none;
    transition: 0.3s;
}

.contact-details a:hover {
    color: white;
    text-decoration: underline;
}

/* Nur für die Kontaktseite */
.contact-page {
    /* Pfad zum Bild anpassen */
    background-image: url('kontakthintergrund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.contact-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

.wedding-page {
    /* Pfad zum Bild anpassen */
    background-image: url('Hochzeithintergrund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.wedding-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

.studio-page {
    /* Pfad zum Bild anpassen */
    background-image: url('studiohintergrund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.studio-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

.people-page {
    /* Pfad zum Bild anpassen */
    background-image: url('peoplehintergrund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.people-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

.fotobox-page {
    /* Pfad zum Bild anpassen */
    background-image: url('fotoboxhintergrund.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.fotobox-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

.ueber-mich-page {
    /* Pfad zum Bild anpassen */
    background-image: url('übermichhintergrund.jpg');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.ueber-mich-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

/* Footer Anpassung für Mobilgeräte */
@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

.footer-logo {
    margin-right: 0;
    /* Logo-Abstand korrigieren */
    margin-bottom: 10px;
}

.main-footer {
    height: auto;
    /* Höhe automatisch anpassen */
    padding: 20px 0;
}

.fragen-page {
    /* Pfad zum Bild anpassen */
    background-image: url('fragen.jpg');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Optional: Ein dunkler Filter, damit der Text besser lesbar ist */
.fragen-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 60% Dunkelheit */
    z-index: -1;
}

/* Footer Anpassung für Mobilgeräte */
/* Layout für Über mich - spiegelt die Fotobox-Logik wider */
.fragen-wrapper {
    display: flex;
    align-items: flex-start;
    /* Bild oben ausrichten */
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 30px;
    color: white;
}

.fragen-image {
    flex: 1;
}

.fragen-image img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fragen-text {
    flex: 1;
}

.fragen-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-top: 0;
}

.fragen-text p {
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {

    .fragen-wrapper {
        flex-direction: column;
    }

}

/* Ändert h1 nur innerhalb des frageb-containers (FAQ-Seite) */
.fragen-page h1 {
    font-size: 3rem;
    /* Größe anpassen (z.B. 48px) */
    color: #ffffff;
    /* Farbe anpassen */
    margin-bottom: 20px;
}

/* Ändert h2 nur innerhalb des fragen-containers (FAQ-Seite) */
.fragen-page h2 {
    font-size: 2rem;
    /* Größe anpassen (z.B. 32px) */
    color: #D4AF37;
    /* Beispiel: Gold/Gelb für eine andere Farbe */
    margin-top: 30px;
    margin-bottom: 15px;
}

.fragen-text h2 {
    text-decoration: underline;
    text-underline-offset: 8px;
    /* Der Abstand der Linie zum Text */
    text-decoration-thickness: 2px;
    /* Falls die Linie etwas dicker sein soll */
}

/* Farbe für die Frage */
.faq-frage {
    color: #e0e0e0;
    /* Beispiel: Ein Goldton für die Fragen */
    font-weight: bold;
    margin-bottom: 5px;
}

/* Farbe für die Antwort */
.faq-antwort {
    color: #B0B0B0;
    /* Beispiel: Weiß für die Antworten */
    margin-bottom: 20px;
}

/* Wenn die Checkbox (toggler) aktiv ist, animiere den Hamburger */
.toggler:checked+.hamburger>div {
    transform: rotate(135deg);
    /* Mittlere Linie drehen */
    background: #fff;
}

.toggler:checked+.hamburger>div::before,
.toggler:checked+.hamburger>div::after {
    top: 0;
    transform: rotate(90deg);
    /* Linien zum X kreuzen */
}
.toggler {
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    opacity: 0;
    cursor: pointer;
    z-index: 100000;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: white;
    z-index: 100;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-family: 'Dancing Script', cursive;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

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

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}
@media (max-width: 768px) {

    .menu-wrap {
        top: 15px;
        right: 15px;
    }

    .hamburger {
        width: 55px;
        height: 55px;
    }

    .menu {
        width: 260px;
        right: -260px;
    }

    .menu-logo {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .menu-logo img {
        width: 120px;
    }

    .menu-grid {
        padding-left: 30px;
        gap: 18px;
    }

    .menu-tile {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {

    .start-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

}
h1 {
    font-size: 3.5rem;
}
@media (max-width: 768px) {

    h1 {
        font-size: 2.2rem;
    }

    .contact-box h2,
    .hochzeit-info h2,
    .about-text h2,
    .fotobox-text h2 {
        font-size: 2rem;
    }

}
@media (max-width:768px){

    /* Footer ganz nach unten */
    .glass-footer{
        position:absolute;
        bottom:0;
        left:0;
        width:100%;
        height:55px;

        font-size:1.2rem;
    }

    /* Button über den Footer */
    .start-btn{
        position:absolute;
        bottom:90px;

        padding:14px 35px;

        z-index:1000;
    }

}
@media (max-width: 768px) {

    .glass-footer {
        height: 70px;
        bottom: 0;
    }

    .glass-footer p {
        font-size: 1.6rem;
        margin: 0;
    }

    .start-btn {
        position: absolute;
        bottom: 95px;   /* knapp über Footer */
        left: 50%;
        transform: translateX(-50%);
        z-index: 200;
    }

}
/* =========================================
   MOBILE STARTSEITE
========================================= */

@media screen and (max-width: 768px) {

    /* Logo kleiner */
    .logo-wrapper {
        top: 15px;
        left: 15px;
    }

    .main-logo {
        width: 140px;
        padding: 10px;
    }

    /* Button über Footer */
    .start-btn {
        position: absolute;
        left: 50%;
        bottom: 110px;

        transform: translateX(-50%);

        padding: 14px 30px;
        font-size: 1rem;

        z-index: 200;
    }

    /* Footer ganz unten */
    .glass-footer {
        position: absolute;
        bottom: 0;

        width: 100%;
        height: 70px;

        display: flex;
        justify-content: center;
        align-items: center;

        z-index: 150;
    }

    .glass-footer p {
        margin: 0;
        font-size: 1.4rem;
    }

    /* Text etwas kompakter */
    .hero-content {
        top: 52%;
        width: 90%;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

}
@media screen and (max-width: 768px) {

    .hero-content {
        top: 48%;
        width: 90%;
    }

    .start-btn {
        position: absolute;
        left: 50%;
        top: 125%;

        transform: translateX(-50%);

        width: 240px;
        height: 60px;

        display: flex;
        justify-content: center;
        align-items: center;

        padding: 0;

        border: 1px solid rgba(255,255,255,.8);
        border-radius: 50px;

        background: transparent;
        color: white;
        text-decoration: none;

        font-size: 1rem;
        line-height: 1;

        white-space: nowrap;

        box-sizing: border-box;

        z-index: 200;
    }
}