body
{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;

}
#favicon {
    width: 32px;
    height: 32px;
}
/* Header / Navigation
   Default: header is part of the document flow and visible at the top.
   When the user scrolls down we add .is-sticky to make it fixed at the viewport top.
   The first time it becomes sticky we add .slide-animate to play a slide-down animation.
*/
.site-header {
    position: relative; /* part of normal flow at page top */
    background: #ffffff;
    transition: transform 0.3s ease;
}

/* sticky state applied when user scrolls down */
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* one-time slide down animation when header first becomes sticky */
.site-header.slide-animate {
    animation: slideDownFromTop 0.50s ease-out forwards;
}

@keyframes slideDownFromTop {
  from { transform: translateY(-110%); }
  to   { transform: translateY(0); }
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 12px 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
}

.site-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.main-nav li a {
  background: #eb6c00;
  color: whitesmoke;
  border: #d85e00 2px solid;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.main-nav li a:hover {
  background: whitesmoke;
  border: #d85e00 2px solid;
  color: black;
  transform: scale(1.45);
}


/* Position nav 20% from the right edge of the header-inner container */
.main-nav {
    margin-right: 20%;
}

/* schuine balken rechts */
.balken {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  width: 350px; /* breedte van het hele balkengebied */
  pointer-events: none;
}

.balken span {
  display: block;
  height: 100%;
  background: linear-gradient(to top, #eb6c00, rgba(235,108,0,0));
  transform: skew(-15deg);
  transition: 0.4s;
  opacity: 0.95;
}

/* rechte balk rechts */
.balken span:nth-child(1) {
  width: 20px;
  margin-right: 10px;
  opacity: 0.3;
}

/* tweede balk */
.balken span:nth-child(2) {
  width: 30px;
  margin-right: 10px;
  opacity: 0.45;
}

/* derde balk */
.balken span:nth-child(3) {
  width: 45px;
  margin-right: 10px;
  opacity: 0.6;
}

/* vierde balk */
.balken span:nth-child(4) {
  width: 70px;
  margin-right: 10px;
  opacity: 0.8;

}

/* vijfde balk */
.balken span:nth-child(5) {
  width: 100px;
  margin-right: 0;
  opacity: 1;
}
/* --- Animatie bij laden --- */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-150px) skew(-15deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) skew(-15deg);
  }
}
.balk-animatie {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.balken span {
  display: block;
  height: 100%;
  background: linear-gradient( #eb6c00);
  transform: skew(-15deg);
  transition: 0.4s;
  animation: slideInFromLeft 0.8s ease-out forwards;
}

/* kleine vertraging per balk voor mooi trapsgewijs effect
  we starten alle animaties pas na 0.5s, en voegen per balk nog 0.1s extra toe */
.balken span:nth-child(1) { animation-delay: 0.1s; }
.balken span:nth-child(2) { animation-delay: 0.2s; }
.balken span:nth-child(3) { animation-delay: 0.3s; }
.balken span:nth-child(4) { animation-delay: 0.4s; }
.balken span:nth-child(5) { animation-delay: 0.5s; }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 280px;        /* laat staan */
  height: 70vh;             /* nieuw: ~70% van schermhoogte op desktop */
  display: flex;
  align-items: center;
  padding: 40px 24px;
  overflow: hidden;
  background-image: url("../ScooterServiceSchijndelFotos/FotoJoepSleutelenBrommer.jpg");
  background-size: cover;
  background-position: center;
}

/* container voor alle schuine oranje vormen */
.hero-decoration {
  position: absolute;
  inset: 0;           /* top:0 right:0 bottom:0 left:0 */
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-balken {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin-right: 105px ;
  /* breedtegebied waar alle balken in zitten */
  width: 50%;  /* kun je tunen */
  z-index: 0;
}

/* basisstyle per balk */
.hero-balken span {
  display: block;
  height: 100%; /* -> vult hele hero-sectie */
  background: #eb6c00;
  transform: skew(-15deg);
  transition: 0.4s;
  color: #fff;
  font-family: Arial, sans-serif;
}

.hero-balken span:nth-child(1) {
  width: 2%;
  margin-right: 10px;
  opacity: 0.3;
}

.hero-balken span:nth-child(2) {
  width: 5%;
  margin-right: 10px;
  opacity: 0.45;
}

.hero-balken span:nth-child(3) {
  width: 10%;
  margin-right: 10px;
  opacity: 0.6;
}

.hero-balken span:nth-child(4) {
  width: 15%;
  margin-right: 10px;
  opacity: 0.8;
}

.hero-balk-tekst {
  width: 70%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* De echte content binnen de oranje balk */
.hero-balk-tekst .hero-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  box-sizing: border-box;

  /* SKEW FIX:
     De buitenste span is schuin (-15deg),
     dus we draaien de content terug +15deg zodat de tekst recht staat.
  transform: skew(15deg);
 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-balk-tekst .hero-content h1 {
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 5% 8px;
  color: #fff;
}

.hero-balk-tekst .hero-content p {
  font-size: clamp(0.9rem, 0.3vw + 0.8rem, 1rem);
  font-weight: 500;
  margin: 0 5%;
  color: #fff;
}

.contact-button
{
  background:whitesmoke ;
  color: #3d3b3b;
  border: whitesmoke 2px solid;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  margin: 12px auto;
  width: fit-content;
  transition: 0.3s;
  cursor: pointer;
}
.contact-button:hover {
  background:#eb6c00 ;
  border: whitesmoke 2px solid;
  color: whitesmoke;
  transition: 0.3s;
}
/* service css */
    .services {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 40px 20px;
      flex-wrap: wrap;
    }

    .service-block {
      background-color: #f37019; /* Oranje */
      color: white;
      border-radius: 15px;
      box-shadow: 0 0 0 3px #333;
      text-align: center;
      padding: 30px 20px;
      width: 17% ;
      height: 150px;
      margin: auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-block:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .service-icon {
      width: auto;
      height: 70px;
      margin-bottom: 15px;
      fill: white;
    }

    .service-title {
      font-size: 30px;
      font-weight: bold;
    }


    .info-blok {
  padding: 60px 20px;
}

.info-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.tekst-kant {
  flex: 1 1 500px;
}

.info-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.info-beschrijving {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.info-knop {
  display: inline-block;
  background-color: #f37019;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: #f37019 2px solid;
}

.info-knop:hover {
  background-color: whitesmoke;
  border: #d85e00 2px solid;
  color: #3d3b3b;
  transition: 0.3s;
}

.foto-kant {
  flex: 1 1 400px;
  text-align: center;
}

.info-afbeelding {
  width: 100%;
  max-width: 400px;
  border-radius: 15px; 
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

    .koop-blok {
  background-color: rgb(223, 223, 223);
  padding: 60px 20px;
}

.koop-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.over-ons {
  position: relative;
  min-height: 280px;        /* laat staan */
  height: 70vh;             /* nieuw: ~70% van schermhoogte op desktop */
  display: flex;
  align-items: center;
  padding: 40px 24px;
  overflow: hidden;
}
.collage-foto-LH {
  width: 100px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  margin-right: 10px;
  border: #d85e00 3px solid;
  position: relative;
  left: 35px;
  bottom: 240px;
}
.collage-foto-C {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  margin-right: 10px;
  border: #d85e00 4px solid;
  position: relative;
}
.collage-foto-RH {
  width: 150px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  margin-right: 10px;
  border: #d85e00 3px solid;
  position: relative;
  right: 30px;
  top: 50px;
} 
footer {
    background: #eb6c00;
    color: #fff;
    padding: 20px 0;
}
.site-footer {
  background-color: #222;
  color: white;
  padding: 60px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1 1 250px;
}

.footer-logo {
  width: 70%;
  border-radius: 8px;
}
.footer-left h4
{
  margin-left: 35px;
}
.footer-middle h4,
.footer-right h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f37019;
}

   /* === CONTACT PAGINA === */
.contact-section {
  position: relative;
  padding: 80px 20px;
  background-color: #f4f4f4;
  overflow: hidden;
}

/* decoratieve oranje balken */
.contact-decor {
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  display: flex;
  gap: 16px;
  pointer-events: none;
}

.contact-decor span {
  display: block;
  width: 60px;
  height: 100%;
  background: linear-gradient( #eb6c00);
  transform: skew(-15deg);
}

/* trapsgewijs verschil */
.contact-decor span:nth-child(1) {
  width: 100px;
  opacity: 0.3;
}

.contact-decor span:nth-child(2) {
  width: 220px;
  opacity: 0.5;
}

.contact-decor span:nth-child(3) {
  width: 300px;
  opacity: 0.8;
}

/* Zorg dat formulier boven decoratie blijft */
.contact-container {
  position: relative;
  z-index: 2;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.contact-intro {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #ddd;
  font-family: Arial, sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #eb6c00;
}

.form-group input[type="file"] {
  padding: 6px;
}


/* === MOBIEL === */
@media (max-width: 600px) {
  .contact-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-intro {
    font-size: 0.95rem;
  }
}
/* Status tekst */
.form-status {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  color: #333;
}

/* Input fout styling */
.input-error {
  border-color: #d93025 !important;
}

.error-text {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #d93025;
}


/* Popup form afspraak*/
.form-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.form-modal.is-open {
  display: block;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.form-modal-box {
  position: relative;
  max-width: 520px;
  margin: 14vh auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  text-align: center;
  width: calc(100% - 28px);
}

.form-modal-title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: #333;
}

.form-modal-text {
  margin: 0 0 16px;
  color: #555;
  line-height: 1.5;
}

.form-modal-btn {
  background: #eb6c00;
  color: #fff;
  border: 2px solid #eb6c00;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.form-modal-btn:hover {
  background: #fff;
  color: #333;
  border-color: #d85e00;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
}
a[href^=tel]{
  color: #fff !important;
  text-decoration: none;
}
/* =========================
   RESPONSIVE (telefoon)
   ========================= */
@media (max-width: 600px) {

  /* Algemene spacing */
  body {
    font-size: 16px;
  }

  /* HEADER */
  .site-header .header-inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .logo img {
    width: 58px; /* kleiner logo */
  }

  .site-title {
    font-size: 0.95rem;
  }

  /* Nav op mobiel: wrap + kleinere knoppen */
  .main-nav {
    margin-right: 0; /* die 20% breekt mobiel */
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .main-nav li a {
    padding: 7px 12px;
    font-size: 0.9rem;
  }

  .main-nav li a:hover {
    transform: none; /* schaal 1.45 is te heftig op mobiel */
  }

  /* Schuine balken in header: kleiner of uit */
  .balken {
    display: none; /* uitzetten op mobiel */
  }

  /* HERO */
  .hero {
    height: 400px;          /* 70vh is vaak te groot op mobiel */
    min-height: 240px;
    padding: 28px 14px;
  }

  .hero-balken {
    width: 80%;
    margin-right: 0;
    right: -10px; /* iets naar rechts */
  }
  .hero-balken span:nth-child(1),
  .hero-balken span:nth-child(2),
  .hero-balken span:nth-child(3),
  .hero-balken span:nth-child(4)
  {
    display: none;
  }
  .hero-balk-tekst {
    width: 100%;
    padding: 16px;
    width: 100%;
    right: -51px;
    position: relative;
  }

  .hero-balk-tekst .hero-content {
    padding: 18px;
    transform: skew(15deg);
    padding-right: 57px;
    margin-top: 50px;
  }

  /* SERVICES: van 4 naast elkaar naar 2 of 1 */
  .services {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 14px;
    padding: 28px 12px;
  }

  .service-block {
    width: 80%;    
    max-width: none;  
    margin: 0;        
    height: auto;
    padding: 22px 16px;
  }

  .service-icon {
    height: 56px;
  }

  .service-title {
    font-size: 20px;
  }

  /* INFO BLOK: foto onder tekst */
  .info-content {
    gap: 22px;
  }

  .tekst-kant,
  .foto-kant {
    flex: 1 1 100%;
  }

  .info-title {
    font-size: 1.6rem;
  }

  .info-afbeelding {
    max-width: 100%;
  }

  /* KOOP BLOK / COLLAGE FOTO’S: geen rare offsets */
  .koop-content {
    gap: 20px;
  }

  .collage-foto-LH,
  .collage-foto-C,
  .collage-foto-RH {
    position: static;       /* stopt het schuiven */
    width: 100%;
    max-width: 360px;
    margin: 0 auto 12px;
  }
.contact-decor span {
  transform: skew(-8deg);
}
.contact-decor span:nth-child(1) {
  width: 50px;
  opacity: 0.3;
}

.contact-decor span:nth-child(2) {
  width: 120px;
  opacity: 0.5;
}

.contact-decor span:nth-child(3) {
  width: 200px;
  opacity: 0.8;
}
  /* FOOTER */
  .footer-container{
    text-align: center;
  }
  .site-footer {
    padding: 40px 16px;
  }

  .footer-logo {
    width: 220px; /* niet 70% (wordt soms te groot) */
    max-width: 80%;
  }

  .footer-left h4 {
    margin-left: 0;
  }
    .modal-content {
    width: calc(100% - 28px);
    margin-top: 14vh;
  }
}

/* Extra: tablets (2 kolommen service blocks) */
@media (min-width: 601px) and (max-width: 900px) {
  .service-block {
    width: 45%;
    height: auto;
  }

  .main-nav {
    margin-right: 0;
  }

  .balken {
    width: 240px;
  }
}
