  /* Grundlegende Stil-Anpassungen für den gesamten Körper */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #1a1a1a;
            color: #f0f0f0;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .underline {
    display: block;
    width: 300px;
    height: 4px;
    background-color: #f0f0f0; 
    margin: 2rem auto;
    border-radius: 2px;
}

        /* Container-Stile für flexible Layouts */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
              box-sizing: border-box;
        }

        /* Header und Navigation */
        .header {
            background-color: rgba(0, 0, 0, 0.7);
            position: fixed;
            width: 100%;
            left: 0;
            top: 0;
            z-index: 1000;
            padding: 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

         .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 1.5rem 2rem;
        }

        .logo {
            flex: 0 0 auto;
        }

        .logo img {
            height: 100px;
        }

        .nav-center {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #888;
        }

        .social-icons {
            flex: 0 0 auto;
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            align-items: center;
            min-width: 120px; /* Mindestbreite für die Social Icons */
        }

        .icon {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .icon:hover {
            color: #888;
        }

        /* Hero-Sektion mit Video-Hintergrund */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 !important;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
        }

        .hero-content h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
       
        .hero-content .adjektive {
            font-size: 1.5rem;
            font-style: italic;
            color: #ccc;
        }

        .hero-content .underline {
            display: block;
            width: 100px;
            height: 4px;
            background-color: #f0f0f0;
            margin: 1rem auto;
            border-radius: 2px;
        }

        .cta-button {
            display: inline-block;
            background-color: #fff;
            color: #1a1a1a;
            padding: 0.75rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: background-color 0.3s, color 0.3s;
            margin-top: 1rem;
            margin: 0 auto; 
        }

        .cta-button:hover {
            background-color: #ccc;
        }
        
        /* Allgemeine Sektionen */
        section {
            padding: 4rem 2rem;
            text-align: center;
        }

        /* About-Sektion */
        .about-me {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center; /* Zentriert die Elemente horizontal */
        }
        
        .image-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .image-section img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .image-section img:hover {
            transform: scale(1.10);
        }

        .text-section {
            max-width: 600px;
            text-align: left;
        }
        
        .text-section ul {
            list-style: none;
            padding: 0;
            columns: 2;
        }

        .text-section li {
            margin-bottom: 0.5rem;
        }

        /* Vollflächiges Bild-Banner */
       .full-width-image-banner {
    height: 600px;
    background-image: url(Content/BannerFoto.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 3rem;      /* Abstand über dem Banner */
    margin-bottom: 3rem;   /* Abstand unter dem Banner */
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

        /* Kontaktformular */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            text-align: left;
            gap: 1rem;
        }

        .contact-form label {
            font-weight: 700;
        }

        .contact-form input, .contact-form textarea {
            padding: 0.75rem;
            border: 1px solid #555;
            background-color: #333;
            color: #f0f0f0;
            border-radius: 5px;
        }

        .contact-form button {
            cursor: pointer;
            border: none;
        }
        
        .contact-form textarea {
        min-height: 120px; /* vorher keine Höhe, jetzt größer */
        resize: vertical;  /* Nutzer kann die Höhe selbst anpassen */
        padding: 0.75rem;
        border: 1px solid #555;
        background-color: #333;
        color: #f0f0f0;
        border-radius: 5px;
        }

        /* Footer-Stile */
        .footer {
            text-align: center;
            padding: 2rem;
            background-color: #111;
            width: 100%;
            position: relative;
        }
        
        .footer a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: #888;
        }

        /* Mobile Optimierung */
        @media (max-width: 768px) {
            .logo img {
            margin-bottom: 0.1rem; /* Weniger Abstand unter dem Logo */
            }
            .nav-links {
            margin-top: 0.1rem;    /* Weniger Abstand über den Navlinks */
            gap: 0.7rem; /* Weniger Abstand zwischen den Links */
            }

            .hero-content {
            max-width: 95vw;
            padding: 1rem;
            padding-top: 9rem;
            }
            .hero-content h1 {
            font-size: 2rem;
            }

            .full-width-image-banner {
            height: 100px;
            }

            .container {
            width: 100%;
            max-width: 100%;
            padding: 1rem;
            box-sizing: border-box;
            }
            .footer {
            padding: 1rem;
            width: 100%;
            left: 0;
            box-sizing: border-box;
            }
            .navbar {
                flex-direction: column;
                align-items: center;
                padding-top: 1rem;
                padding-bottom: 1rem;
                padding: 1rem;
                width: 100%; /* statt 100vw */
                box-sizing: border-box;
            }

            .nav-links, .social-icons {
                margin-top: 1rem;
            }
            
            .text-section ul {
                columns: 1; /* Clients in einer Spalte anzeigen */
            }

            .image-section img {
                max-width: 220px !important;
                width: 80vw !important;
                height: auto !important;
            }

            .social-icons .icon {
            font-size: 1.2rem;
            }
            .lang-switch {
            font-size: 0.7rem;
            padding: 0.2em 0.7em;
            }

}

.booking-btn-center {
    text-align: center;
    margin-top: 1.5rem;
}

        .lang-switch {
        background: #fff;
        color: #1a1a1a;
        padding: 0.3em 1em;
        border-radius: 20px;
        font-weight: 700;
        margin-left: 1rem;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
        }
.lang-switch:hover {
    background: #ccc;
    color: #222;
}
.show-portfolio {
    margin-top: 3rem; /* oder z.B. 3rem für noch mehr Abstand */
    margin-bottom: 1rem;
    text-decoration: underline;
}

.hero-content h1,
.hero-content p,
.hero-content .adjektive {
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .cta-button {
    display: inline-block;
    margin: 1rem auto 0 auto;
    text-align: center;
}

    #about,
    #contact {
        scroll-margin-top: 200px; /* oder Wert passend zur mobilen Header-Höhe */
    }

    .hero-slide {
    opacity: 0;
    transition: opacity 3s ease;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    display: block;
}
.hero-slide.active {
    opacity: 1;
    z-index: -1;
}

.work-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.work-gallery a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #f0f0f0;
    transition: transform 0.3s;
    width: 160px;
}
.work-gallery a:hover {
    transform: scale(1.05);
}
.work-gallery img {
    width: 100%;
    max-width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s;
}
.work-gallery span {
    margin-top: 0.3rem;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 8px #000;
}
@media (max-width: 900px) {
    .work-gallery {
        gap: 1rem;
    }
    .work-gallery a {
        width: 120px;
    }
    .work-gallery img {
        max-width: 120px;
        height: 90px;
    }
}
@media (max-width: 600px) {
    .work-gallery {
        flex-wrap: wrap;
        gap: 0.7rem;
    }
    .work-gallery a {
        width: 45vw;
        max-width: 150px;
    }
    .work-gallery img {
        max-width: 100%;
        height: 70px;
    }
}

.hero-section,
.full-width-image-banner {
    width: 100%;
    position: relative;
    left: 0;
    margin: 0;
    padding: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 5rem;
    margin-top: 2rem;
    justify-items: center;
    margin: 2rem auto 0 auto;
    }
.step {
    flex: 1 1 300px;
    background: #181818;
    border-radius: 10px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
        width: 100%;
    max-width: 250px;         /* sorgt für gleichmäßige Step-Breite */
    min-width: 0;

}
.step h3 {
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-size: 1.2rem;
}
.step p {
    color: #ccc;
    font-size: 1rem;
}

.pricelist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pricelist {
    background: #181818;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}

.pricelist h3 {
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-size: 1.2rem;
}

.pricelist ul {
    list-style: none;
    padding: 0;
    color: #ccc;
    font-size: 0.8rem;
}

.pricelist li {
    margin-bottom: 0.5rem;
}


#example-fotos-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #181818;
    padding: 2rem 0;
    box-sizing: border-box;
    overflow: hidden;
}
.example-fotos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 100vw;
    overflow-x: auto;
}
.example-fotos-grid img {
    width: 280px;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    background: #222;
    transition: transform 0.3s;
}

#lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}
#lightbox-overlay.active {
    display: flex;
}
#lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}
#lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    font-weight: bold;
    transition: color 0.2s;
}
#lightbox-close:hover {
    color: #ccc;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #fff;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
    user-select: none;
    transition: background 0.2s;
}

.pricelist li.spacer {
    margin-bottom: 1.5em;
    list-style: none;
    min-height: 0.5em;
}

#lightbox-prev { left: 30px; }
#lightbox-next { right: 30px; }
.lightbox-arrow:hover { background: rgba(0,0,0,0.6); }

select#anliegen {
    width: 100%;
    padding: 0.7rem 1rem;
    background: #222;
    color: #f0f0f0;
    border: 1.5px solid #444;
    border-radius: 8px;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    appearance: none;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

select#anliegen:focus {
    border-color: #ffd700;
    box-shadow: 0 0 0 2px #ffd70044;
}

select#anliegen option {
    background: #222;
    color: #f0f0f0;
}

@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step {
        min-width: 140px;
        max-width: 200px;
        padding: 1rem 0.5rem;
    }

    .portrait-fotos-grid {
        gap: 1rem;
    }
    .portrait-fotos-grid img {
        width: 200px;
        height: 150px;
    }
}
@media (max-width: 700px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step {
        width: 90%;
        max-width: 400px;
        margin-bottom: 1.2rem;
    }
    .portrait-fotos-grid {
        gap: 0.5rem;
    }
    .portrait-fotos-grid img {
        width: 40vw;
        max-width: 180px;
        height: 130px;
    }
.pricelist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Hamburger-Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}
.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #ffd700;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menü */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-center {
        position: absolute;
        top: 230px; /* Passe ggf. an die Höhe deines Headers an */
        left: 0;
        width: 100vw;
        background: #181818;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        transform: translateY(-200%);
        transition: transform 0.3s;
        z-index: 150;
    }
    .nav-center.open {
        transform: translateY(0);
    }
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        align-items: center;
    }
}

.business-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin-top: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #232526; /* Fallback-Farbe */
     padding: 0 !important;
}
.business-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1rem 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.business-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('Content/Bannerbusiness.jpg') center center/cover no-repeat;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}

.leistungen ul {
    list-style: disc inside;
    color: #fff;
    font-size: 1.1rem;
    margin: 1.5rem auto 2rem auto;
    max-width: 600px;
    padding-left: 0;
}
.leistungen li {
    margin-bottom: 0.7rem;
}

.cta-section .cta-button {
    margin-top: 1.5rem;
}

body.subpage .container:first-of-type {
    margin-top: 200px; /* oder gewünschter Abstand */
}

html, body {
    overflow-x: hidden;
}

.drone-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin-top: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #232526; /* Fallback-Farbe */
     padding: 0 !important;
}

.drone-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('Content/Bannerdrone.jpg') center center/cover no-repeat;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}

.drone-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 4rem 1rem 3rem 1rem;
}

.einstiegstext-drone {
    text-align: center;
    max-width: 900px;
    margin: 2.5rem auto 1rem auto;
    padding: 0 1rem;
}
.einstiegstext-drone h2 {
    margin-bottom: 1.2rem;
}
.einstiegstext-drone p {
    margin-bottom: 1rem;
    font-size: 1.13rem;
} 

.leistungen ul {
    max-width: 800px;   /* vorher z.B. 600px */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.cta-section {
    position: relative;
    background: url('Content/Dronestart.jpg') 10% 80%/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem 2.5rem 1rem;
    border-radius: 16px;
    margin: 3rem auto 2rem auto;
    max-width: 800px; /* <- hier anpassen! */
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30,30,30,0.65); /* dunkler Overlay für bessere Lesbarkeit */
    z-index: 1;
}
.cta-section > * {
    position: relative;
    z-index: 2;
}

.wedding-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin-top: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #232526; /* Fallback-Farbe */
     padding: 0 !important;
}
.wedding-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('Content/Bannerwedding.jpg') center center/cover no-repeat;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}
.wedding-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 4rem 1rem 3rem 1rem;
}

.portrait-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin-top: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #232526; /* Fallback-Farbe */
     padding: 0 !important;
}
.portrait-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('Content/Bannerportrait.jpg') center center/cover no-repeat;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}
.portrait-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 4rem 1rem 3rem 1rem;
}

.events-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin-top: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #232526; /* Fallback-Farbe */
     padding: 0 !important;
}
.events-banner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('Content/Bannerevents.jpg') center center/cover no-repeat;
    opacity: 0.55;
    z-index: 1;
    pointer-events: none;
}
.events-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 4rem 1rem 3rem 1rem;
}

.nav-links a.active {
    color: #ffd700;

}

.steps-grid .step i {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 700px) {
    .portrait-hero,
    .wedding-hero,
    .business-hero,
    .drone-hero,
    .events-hero {
        padding: 1.2rem 0.5rem 0.8rem 0.5rem;
        min-height: 110px;
    }
    .portrait-banner,
    .wedding-banner,
    .business-banner,
    .drone-banner,
    .events-banner {
        min-height: 70px;
        height: 100%;
    }
    .portrait-hero h1,
    .wedding-hero h1,
    .business-hero h1,
    .drone-hero h1,
    .events-hero h1 {
        font-size: 1.5rem;
    }
    .portrait-hero p,
    .wedding-hero p,
    .business-hero p,
    .drone-hero p,
    .events-hero p {
        font-size: 0.95rem;
    }
}

@media (max-width: 700px) {
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        justify-items: center;
    }
    .step {
        min-width: 0;
        width: 100%;
    }
}
@media (max-width: 430px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .portrait-fotos-grid,
    .example-fotos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.2rem;
        justify-items: center;
    }
    .portrait-fotos-grid img,
    .example-fotos-grid img {
        width: 110px;
        height: 90px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        background: #222;
    }
}
@media (max-width: 430px) {
    .portrait-fotos-grid,
    .example-fotos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .leistungen ul {
        font-size: 0.98rem;
        line-height: 1.5;
    }
    .leistungen h2 {
        font-size: 1.2rem;
    }
}