/* ========================================
   1. Reset & Grundstruktur
======================================== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    /*background: #f9f9f9;*/
    background: #000;
    color: #222;
    font-size: 1.05rem;
    scroll-behavior: smooth;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #111;
    text-align: center;
    padding-bottom: 0.5rem; /* Abstand zwischen Text und Linie */
    border-bottom: 3px solid #ff6600; /* Deine orange Linie */
    display: inline-block; /* Sorgt dafür, dass die Linie nur so lang ist wie der Text */
    margin-bottom: 2.5rem; /* Etwas mehr Abstand nach unten */
}

/* ========================================
   2. Header & Icon-Bar
======================================== */
.top-header {
    background-color: #000;
    color: #ff6600;
    height: auto;
    padding: 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.top-header .logo img {
    height: 60px;
}

.top-header .header-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #ff6600;
    text-align: right;
}

/* ========================================
   3. Hero Slider (Full-Screen with Overlay)
======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}


.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(100%) blur(8px) brightness(0.5);
    z-index: 1;
}


.hero-slide-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 95%;
    max-height: 95%;
}

.hero-slide-foreground img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: none;
}



/* Slider-Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #ff6600;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.left { left: 20px; }
.slider-arrow.right { right: 20px; }

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* ========================================
   4. About Section
======================================== */
.about-me-section {
    background: #fff;
    padding: 3rem 1rem;
    text-align: center; /* Zentriert die h2-Überschrift */
}

.about-me-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-me-image {
    flex-basis: 400px;
    max-width: 400px;
}

.about-me-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff6600; /* ANPASSUNG: Rand auf 1px gesetzt */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-me-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-me-text {
    flex-basis: 500px;
    max-width: 500px;
    text-align: left; /* Stellt sicher, dass der Absatztext linksbündig ist */
}

.about-me-text h2 {
    text-align: left;
    margin-top: 0;
    border: none; /* Entfernt den globalen Stil für diese spezielle Überschrift */
    display: block; /* Stellt das normale Block-Verhalten wieder her */
    margin-bottom: 1.5rem; /* Fügt den normalen Abstand wieder hinzu */
}


/* ========================================
   5. Shooting Steps
======================================== */
.shooting-steps {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    text-align: center; /* Zentriert die h2-Überschrift */
}

.shooting-steps .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.step-box {
    background: #fff;
    border: 3px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
}

.step-box h5 {
    font-size: 1.1rem;
    color: #ff6600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step-icon {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 1rem;
}

/* ========================================
   6. Pakete (Pricing)
======================================== */
#pakete {
    background-color: #fff;
    padding: 2rem 1rem;
    text-align: center; /* Zentriert die h2-Überschrift */
}

.pakete {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.paket {
    background: #fff;
    color: #222;
    padding: 1.5rem;
    border-radius: 12px; /* Angepasst an "Ablauf" */
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); /* Angepasst an "Ablauf" */
    transition: all 0.3s ease;
    border: 3px solid #ddd; /* Angepasst an "Ablauf" */
}

.paket:hover {
    transform: translateY(-6px);
}

.paket h3 {
    color: #ff6600;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.paket strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

.paket ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    text-align: left;
}

.paket ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff6600;
    margin-right: 0.5rem;
}

/* ========================================
   7. Galerie Grid
======================================== */
#galerie {
    background-color: #f5f5f5;
    padding: 2rem 1rem;
    text-align: center; /* Zentriert die h2-Überschrift */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.galerie-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

.galerie-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galerie-img:hover img {
    transform: scale(1.05);
}

/* ========================================
   8. Modal Lightbox
======================================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    border-radius: 12px;
}

.image-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

/* ========================================
   9. Footer
======================================== */
.site-footer {
    background-color: #111;
    color: #999;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

.site-footer a {
    color: #ff6600;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   10. Responsive Anpassungen (vereinheitlicht)
======================================== */
@media (max-width: 1024px) {
    .hero-slide-foreground {
        width: 100vw !important;
        height: auto !important;
        max-width: 100vw !important;
        max-height: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-grow: 1 !important;
    }

    .hero-slide-foreground img {
        width: 100vw !important;
        height: auto !important;
        max-height: 85vh !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
    }

    .slider-arrow {
        font-size: 2rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .hero-slide-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        filter: grayscale(100%) blur(0px) brightness(0.60) !important;
        opacity: 0.5 !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .hero-slide-foreground {
        width: 100vw !important;
        height: auto !important;
        max-width: 100vw !important;
        max-height: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-grow: 1 !important;
    }

    .hero-slide-foreground img {
        width: 100vw !important;
        height: auto !important;
        max-height: 85vh !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
    }

    .slider-arrow {
        font-size: 2rem !important;
        padding: 0.4rem 0.8rem !important;
    }

    .hero-slide-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        filter: grayscale(100%) blur(0px) brightness(0.60) !important;
        opacity: 0.5 !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        transform: none !important;
    }
    
    .about-me-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .about-me-image {
        flex-basis: auto;
        width: 70%; 
        max-width: 350px; 
    }

    .about-me-text {
        flex-basis: auto;
        width: 100%;
        text-align: center;
    }

    .about-me-text h2 {
        text-align: center;
        border-bottom: 3px solid #ff6600; /* Strich auch in mobiler Ansicht */
        display: inline-block; /* Korrekte Darstellung des Strichs */
    }
}

@media (max-width: 480px) {
    .hero-slide-foreground {
        width: 100vw !important;
        height: auto !important;
        max-width: 100vw !important;
        max-height: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-grow: 1 !important;
    }

    .hero-slide-foreground img {
        width: 100vw !important;
        height: auto !important;
        max-height: 85vh !important;
        object-fit: cover !important;
        border-radius: 8px !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) !important;
    }

    .slider-arrow.left { left: 10px; }
    .slider-arrow.right { right: 10px; }

    .slider-arrow {
        font-size: 1.6rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    .hero-slide-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        filter: grayscale(100%) blur(0px) brightness(0.60) !important;
        opacity: 0.5 !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        transform: none !important;
    }
}

/* TEMP BADGE PAKETE*/
/* Badge "Bestseller" */
.paket.bestseller {
  position: relative;
  border: 2px solid #ff6600;
  background-color: #fffdf9;
}

.paket .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff6600;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.paket-section {
  font-family: inherit;
  font-weight: bold;
  font-size: 1.1rem;
  color: #000000;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}
