/* Style theme */

body {
    margin: 0;
    padding: 0;
    /* color: white; */
    /* background-color: black; */
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #FF752B;
  text-align: center;
}

h2 {
    /* font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem; */
}

p {
  color: black;
}

a { color: white}

/* ===== GARAGE DEUR BUTTON ===== */

.button-primary {
  position: relative;
  display: inline-block;

  background-color: #FF752B; /* buitenkant / kozijn */
  border-radius: .6em;
  padding: .3rem;

  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden; /* nodig voor schuif-effect */

  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(0,0,0,0.25),
    0 6px 16px rgba(0,0,0,0.25);
}

/* Zwarte "deur" */
.button-primary .inner {
  position: relative;
  z-index: 2;

  display: block;
  padding: .8em 1.4em;

  background-color: #000;
  color: #fff;
  border-radius: .4em;

  /* animatie */
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* Garage-deur sluit */
.button-primary:hover .inner {
  transform: translateY(110%);
}

/* Subtiele roldeur-lijnen (optioneel maar nice) */
.button-primary .inner::before {
  content: '';
  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.08) 2px,
    transparent 2px,
    transparent 6px
  );

  pointer-events: none;
}

/* Oranje vlak icon (onder de deur) */
/* Tekst in oranje vlak */
.button-primary::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;

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

  color: #fff;
  font-weight: 600;
  text-transform: uppercase;

  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Tekst zichtbaar bij hover */
.button-primary:hover::after {
  opacity: 1;
}

/* ===============================
   GARAGE-DEUR HOVER VOOR ARROWS
   =============================== */

/* Zorg dat arrows dezelfde deur-animatie gebruiken */
.button-primary.slider-arrow {
  overflow: hidden;
}

/* Het pijltje onder de deur (oranje vlak) */
.button-primary.slider-arrow::after {
  content: '';
  position: absolute;
  inset: 0;

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

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: #fff;

  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Richting bepalen */
.button-primary.slider-arrow.arrow-right::after {
  content: "\f054"; /* chevron-right */
}

.button-primary.slider-arrow.arrow-left::after {
  content: "\f053"; /* chevron-left */
}

/* Toon pijl wanneer deur sluit */
.button-primary.slider-arrow:hover::after {
  opacity: 1;
}


@media screen and (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
}
