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

html,
body {
  height: 100%;
  overflow-x: hidden;
}

/* ── FIXED BACKGROUNDS ── */
.bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-desktop {
  background-image: url("https://cdn.studio100.com/efkesonderons/website_bg.png");
  background-position: left center;
  display: block;
}

.bg-mobile {
  background-image: url("https://cdn.studio100.com/efkesonderons/mobiel_bg.png");
  background-position: center bottom;
  display: none;
}

/* ── PAGE WRAP ── */
.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ── DESKTOP HERO ── */
.hero-desktop {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0;
  padding: 2rem 5vw 2rem 50%;
}

.logo {
  width: clamp(180px, 22vw, 320px);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.12));
  align-self: center;
}

.tagline {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(58, 47, 40, 0.75);
  line-height: 1.6;
  max-width: 58ch;
  align-self: center;
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
}

.font-test-block {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  max-width: 38ch;
}

.font-test-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(58, 47, 40, 0.3);
  margin-bottom: -0.3rem;
}

.ft1 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(58, 47, 40, 0.75);
  line-height: 1.6;
  text-align: center;
}
.ft2 {
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: hsla(23, 18%, 19%, 0.75);
  line-height: 1.6;
  text-align: center;
}
.ft3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: hsla(23, 18%, 19%, 0.75);
  line-height: 1.6;
  text-align: center;
}
.ft4 {
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: hsla(23, 18%, 19%, 0.75);
  line-height: 1.6;
  text-align: center;
}
.ft5 {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(58, 47, 40, 0.75);
  line-height: 1.6;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.social-icons a img {
  width: clamp(35px, 4vw, 54px);
  height: clamp(35px, 4vw, 54px);
  display: block;
  transition:
    transform 0.18s,
    opacity 0.18s;
  opacity: 0.9;
}

.social-icons a:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* ── MOBILE HERO ── */
.hero-mobile {
  display: none;
}

.logo-mobile {
  width: clamp(80px, 26vw, 120px);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.12));
}

.social-icons-mobile {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icons-mobile a img {
  width: 38px;
  height: 38px;
  display: block;
  transition: transform 0.18s;
}

.social-icons-mobile a:hover img {
  transform: scale(1.1);
}

.contact-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: rgba(58, 47, 40, 0.6);
  line-height: 1.8;
  align-self: center;
  max-width: 100%;
}

.contact-text a {
  color: hsla(86, 14%, 29%, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-text a:hover {
  color: rgba(75, 84, 63, 1);
}

/* ── MOBILE SCROLL CONTENT ── */
.mobile-scroll-content {
  display: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  html,
  body {
    overflow: hidden;
    height: 100%;
  }

  .bg-desktop {
    display: none;
  }
  .bg-mobile {
    display: block;
  }
  .hero-desktop {
    display: none;
  }
  .page-wrap {
    min-height: unset;
  }

  .hero-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.2rem 1.2rem 1.5rem;
    gap: 0.5rem;
  }

  /* Voorkom dat flexbox items inkrimpt */
  .hero-mobile > * {
    flex-shrink: 0;
  }

  .hero-mobile iframe,
  .hero-mobile .tagline,
  .hero-mobile .social-icons-mobile,
  .hero-mobile .contact-text {
    width: 100%;
  }

  .hero-mobile .logo-mobile {
    width: clamp(160px, 52vw, 240px);
  }
}
