* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #000;
    color: #fff;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}

section,
header,
footer,
main {
    background: #000;
    color: #fff;
}



.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}


.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
   
}

.nav-list a.nav-home {
    color: #ff1a1a;
    text-decoration: underline;
}
.nav-list a.nav-home::after {
    width: 100%;
}
.nav-list a.nav-home:hover {
    text-decoration: none;
}

/* NEU */
.nav-list a {
    position: relative;
    padding-bottom: 6px;
    
}


.nav-list a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.6;
    color: #ff1a1a;
}
.nav-list a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ff1a1a;
    opacity: 0.6;
}

    .nav-list a:active{
        color: #ff1a1a;
    }
    
    .nav-list a.active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: #ff1a1a;
        box-shadow:
            0 0 6px rgba(255, 26, 26, 0.8),
            0 0 12px rgba(251, 48, 48, 0.6),
            0 0 20px rgba(255, 26, 26, 0.4);
    }

.hero-slider {
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 6vw 0; /* ← TOP-SPACE */

    position: relative;
    overflow: hidden;
}

.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    z-index: 1;
    transition: background 0.3s;
}
.prev-slide:hover,
.next-slide:hover {
    background: rgba(0,0,0,0.6);
}

.prev-slide {
    left: 10px;
}
.next-slide {
    right: 10px;
}

.slider {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 80vh;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}


.slides {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAnimation 18s infinite;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    background-repeat: no-repeat;
    background-position: center;
}

.slide {
    background-size: contain;
    background-color: #000;
}



/* Placeholder images */
.slide-1 {
    background-image: url("/images/dog.jpeg");
}
.slide-2 {
    background-image: url("/images/35.JPEG");
}
.slide-3 {
    background-image: url("/images/34.JPEG");
}
.slide-4 {
    background-image: url("/images/03.JPEG");
}
.slide-5 {
    background-image: url("/images/14.jpeg");
}
.slide-6 {
    background-image: url("/images/02\ crop.JPEG");
}
.slide-7 {
    background-image: url("/images/amsterdam_in_spring.JPG");
}
.slide-8 {
    background-image: url("/images/02.JPEG");
}
.slide-9 {
    background-image: url("/images/APX14.JPEG");
}
.slide-10 {
    background-image: url("/images/05\ 2.JPEG");
}
.slide-11 {
    background-image: url("/images/sheep.jpeg");
}
.slide-12 {
    background-image: url("/images/simon_van_steenis.jpeg");
}


.cta {
    padding: 80px 20px;
    text-align: center;
    background: #000;
}


.cta-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    padding-bottom: 8px;
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.cta-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff1a1a;
    box-shadow:
        0 0 6px rgba(255, 26, 26, 0.8),
        0 0 12px rgba(255, 26, 26, 0.6);
}


.cta-link:hover {
    opacity: 0.6;
    transform: scale(1.05);
}
.cta-link:hover::after {
    box-shadow:
        0 0 10px rgba(255, 26, 26, 1),
        0 0 20px rgba(255, 26, 26, 0.8);
}

.footer {
    padding: 60px 6vw 40px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    flex-direction: row; /* Standard: Icon neben Text */
}

.footer-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding-bottom: 4px;
}
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ff1a1a;
    box-shadow:
        0 0 6px rgba(255, 26, 26, 0.7),
        0 0 12px rgba(255, 26, 26, 0.4);
}
.footer-icon {
    display: inline-block;
    width: 40px;   /* Größe des Icons */
    height: 40px;
    overflow: hidden;
    border-radius: 50%; /* Rundes Icon */
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* sorgt dafür, dass das Bild den Container ausfüllt */
    display: block;
  }
  
  .footer-icon:hover {
    transform: scale(1.1);
    box-shadow:    0 0 6px rgba(255, 26, 26, 0.8),
    0 0 12px rgba(251, 48, 48, 0.6),
    0 0 20px rgba(255, 26, 26, 0.4);
    cursor: pointer;
  }
  

/* Responsive */
@media (max-width: 768px) {
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-list a {
        font-size: 18px;

    }

    .slide {
        background-size: contain;
        background-color: #000;
    }
    .footer-icon {
        box-shadow:    0 0 6px rgba(255, 26, 26, 0.8),
        0 0 12px rgba(251, 48, 48, 0.6),
        0 0 20px rgba(255, 26, 26, 0.4);
      }
}

@media (min-width: 769px) {
    .slide {
        background-size: contain;
    }
}

@media (max-width: 768px) {
    .slide {
        background-size: contain;
        background-color: #000;
    }
    .hero-slider {
        padding-top: 2em;
       
    }
    .slider {
        height: 65vh;
    }
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
    .nav-list {
        position: absolute;
        width: 65vw;
        height: auto;
        display: flex;
        flex-direction: column;
        transform: translateX(-120%);
        transition: transform 0.5s ease-in-out;
        z-index: 200;
        margin-top: 4em;
        background-color:black;  
        padding: 20px 20px;
    }
   
    
    .burger {
        display: block;
        cursor: pointer;
        margin: 10px 20px;
        z-index: 200; 
    }
    
    .burger div {
        width: 35px;
        height: 3px;
        background-color:#ff1a1a;
        margin: 5px;
        transition: all 0.3s ease;      
    }
    
    /* Active navigation */
    .nav-active {
        transform: translateX(0%);
    }
    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    
    /* Burger Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    
}

@media (max-width: 600px) {
    .footer-inner {
      flex-direction: column;
    }
    .footer-inner .footer-icon {
        order: -1;        
        margin-bottom: 5px; 
      }
  }
  @media (max-width: 768px) {
    .hero-slider {
        display: flex;
        flex-direction: column;  /* Bilder oben, Pfeile unten */
        align-items: center;
    }

    .slider {
        width: 100%;
    }

  

    /* Pfeile nebeneinander */
    .prev-slide,
    .next-slide {
        position: static;          /* raus aus absolute */
        transform: none;           /* keine Verschiebung */
        display: inline-block;     /* nebeneinander */
        margin: 10px 5px 0;        /* Abstand oben & seitlich */
        font-size: 1.8rem;
    }

    /* Container für Pfeile nebeneinander */
    .hero-slider .arrow-container {
        display: flex;
        justify-content: center;
        gap: 10px; /* Abstand zwischen den Pfeilen */
        width: 100%;
    }
}





/* --- ABOUT -- Section Side --- */
.about-section-side {
    padding: 60px 20px;
    margin-top: 6rem;
  }
  
  .about-container-side {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Bild definiert den Textfluss */
  .about-image-side {
    float: left;
    width: 40%;
    max-width: 500px;
    margin: 0 20px 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  
  /* DAS erzwingt den Umbruch unter das Bild */
  .about-text-under {
    clear: left;
  }
  
  
  .about-container-side h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about-container-side p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 1rem;
  }
  
  .highlight-red {
    color: #ff1a1a;
  }
  .about-quote {
    font-style: italic;
  }
  .about-simon{
    padding-top: 7em;
}
    
.legal-stuff {
    text-align: center;       /* zentriert den Text */
    font-size: 0.8rem;        /* kleiner, aber lesbar */
    line-height: 1.4;         /* angenehmer Zeilenabstand */
    color: #ccc;              /* optional: etwas dezenter Grauton */
    margin: 20px 0;           /* Abstand oben und unten */
  }
  

/* --- Responsive --- */
@media (max-width: 890px) {
    .about-container-side {
        flex-direction: column; /* Bild oben, Text unten */
        gap: 20px;
        text-align: left;
    }

    .about-section-side {
        margin: 50px 0;
    }
.about-simon{
    padding: 0;
}
 
}

@media (max-width: 890px) {
    .about-image-side {
      float: none;
      width: 100%;
      margin: 0 0 20px 0;
    }
  }
  

/* --- WORK -- Gallery Section --- */
.gallery-section {
    padding: 60px 20px;
    margin-top: 2rem;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: auto;
    cursor: pointer;
    
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

/* --- Lightbox --- */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

/* Aktiv-Zustand */
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Bild Animation */
.gallery-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Wenn Lightbox aktiv ist */
.gallery-lightbox.active .gallery-lightbox-img {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
}

.gallery-close:hover {
    opacity: 0.7;
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* --- CONTACT -- Section --- */
.contact-section {
    padding: 80px 20px;
    margin-top: 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Bild */
.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Formular */
.contact-form-wrapper {
    flex: 1;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
}

.contact-field label {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: white;
}

.contact-field input,
.contact-field textarea {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #000;
}

/* Button */
.contact-button {
    margin-top: 10px;
    padding: 14px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    
}

.contact-button:hover {
    opacity: 0.8;
}

.contact-status {
    
    font-size: 0.9rem;
    color: #333;
}

/* Honeypot */
.contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-title {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .contact-container {
        align-items: flex-start;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    .contact-form {
        width: 100%;
        align-items: flex-start;
    }

    .contact-field {
        width: 100%;
        text-align: left;
    }

    .contact-field input,
    .contact-field textarea {
        width: 100%;
    }

    .contact-title {
        text-align: left;
    }

    .contact-button {
        align-self: flex-start;
    }
}



/* -- SERVICE -- Section */

.service-section {
    display: flex;
    flex-direction: column;
    gap: 4rem 0rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    margin-top: 2rem;
  }
  
  .service-inner--left {
    flex-direction: row;
  }
  
  .service-inner--right {
    flex-direction: row;
  }
 
  .service-image-wrapper {
    flex: 1;
  }
  
  .service-image {
    width: 100%;
    height: auto;
  }
  
  .service-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid #fff;
    padding: 0 0 5rem 0;
  }
  
   
.service-content {
    display: flex;
    flex-direction: column;
    gap: 2rem 0rem;
    flex: 1;
  }

  .service-h1 {
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 2em;
  }
  
  .service-h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 1px;
    background-color: #ff1a1a;
  }
  
  
  .service-h5 {
    color: #c40000;
    font-weight: 500;
    line-height: 1.6; 
    margin-top: -3em;
  }

  
  .service-cross {
    margin-right: 0.6rem;
    font-size: 0.5em;
  }


  .service-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.3em;
  }
  
  .service-side-item {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
  }
  
  .service-side-item::before {
    content: "–";
    position: absolute;
    left: 0;
  }


 
   /* Mobile */
   @media (max-width: 768px) {
    .service-inner {
      flex-direction: column;
      text-align: left;
      border: 1px solid #fff;
      padding: 0 0 2.5rem 0;
    }

    .service-image-wrapper {
      order: 1;
    }

    .service-content {
      order: 2;
    }

  
  

  }


/* =========================
   Workshops – Full width
   ========================= */

   .ws2{
    width: 100%;
    background: #000;
    color: #fff;
    margin-top: 5em;
  }
  
  /* Single workshop row */
  .ws2-item{
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Taller on desktop */
  @media (min-width: 768px){
    .ws2-item{
      min-height: 80vh;
    }
  }
  
  /* Dark gradient overlay */
  .ws2-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.45) 45%,
      rgba(0,0,0,0.15) 100%
    );
  }
  
  /* Text content */
  .ws2-content{
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(24px, 6vw, 64px);
  }
  
  /* Large, bold titles */
  .ws2-title{
    margin: 0 0 20px;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: 0.5px;
  
    text-shadow:
      0 8px 30px rgba(0,0,0,0.9);
  }
  
  /* List */
  .ws2-list{
    margin: 0;
    padding: 0;
    list-style: none;
  
    font-size: clamp(18px, 4.5vw, 26px);
    font-weight: 500;
    line-height: 1.4;
  
    text-shadow:
      0 6px 22px rgba(0,0,0,0.9);
  }
  
  .ws2-list li{
    opacity: 0.95;
  }
  
  /* =========================
     Background images
     ========================= */
  
  .ws2-film{
    background-image: url("/images/08.JPEG");
  }
  
  .ws2-print{
    background-image: url("/images/amsterdam_in_spring.JPG");
  }