/* Google font import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Kleuren */
:root{
  --orange: #FF470B;
  --accent: #006ACC;
  --ink: #0A2540;         /* donkerblauw voor tekst/overlays */
  --page: #0f1f33;        /* basiskleur achtergrond */
  --blur-bg: rgba(15,31,51,0.35); /* fallback als blur niet wordt ondersteund */
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body{
  min-height: 100vh;
  display: flex;
  align-items: center;         /* verticaal centreren */
  justify-content: flex-start; /* horizontaal links */
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: white;
  background: var(--page);
  overflow: hidden; /* schermvullende hero */
}

/* Achtergrondfoto */
.hero-bg{
  position: fixed;
  inset: 0;
  background: url("/images/bg.jpg") center right / cover no-repeat;
  z-index: -3;
  filter: saturate(105%);
}

/* Blauwe overlay + zachte gradient van links (donkerder) naar rechts (lichter) */
.hero-overlay{
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(150deg, rgba(2,30,68,0.95) 0%, rgb(2, 30, 68) 40%, rgba(2, 30, 68, 0.94) 65%, rgba(2,30,68,0) 100%);
}

/* Decoratieve outline links */
.logo-outline {
  position: fixed;
  left: -215px;
  height: 1200px;
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}

/* Rechterboven woordmerk */
.brand{
  position: fixed;
  right: clamp(16px, 4vw, 48px);
  top: clamp(12px, 3vh, 36px);
  z-index: 10;
  display: inline-block;
}
.brand img{
  height: clamp(36px, 5vw, 64px);
  width: auto;
}

/* Tekstblok links */
.container{
  max-width: 1120px;
  padding-left: clamp(20px, 4vw, 120px);
  padding-right: clamp(20px, 4vw, 20px);
}

h1{
  margin: 0 0 28px 0;
  line-height: 1.1;
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 54px);
  letter-spacing: 0.2px;
}

/* CTA text zonder link */
.cta-text {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  margin: 0 16px 0 0;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--orange);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* CTA met blur */
.cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover{ transform: translateY(-1px); }
.cta:active{ transform: translateY(0); }

/* Contactkaart rechts met blur */
.contact-card{
  position: fixed;
  right: clamp(16px, 4vw, 40px);
  bottom: clamp(16px, 5vh, 48px);
  width: min(420px, 86vw);
  padding: 22px 26px;
  border-radius: 5px;
  color: #ecf3ff;
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.contact-card h2{
  margin: 0 0 12px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: .3px;
  font-weight: 600;
}
.contact-lines{
  display: grid;
  gap: 12px;
  font-size: clamp(15px, 1.8vw, 18px);
}
.contact-card a{
  color: white;
  font-weight: 600;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.contact-card p{ margin: 0; }

/* Footer onderaan, subtiel */
.footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 8px;
  text-align: center;
  font-size: 11px;
  opacity: 0.75;
  padding-inline: 16px;
}

/* ────────────────────────────────────────────────────────────── */
/* MOBIEL (≤ 767px)                                              */
/* ────────────────────────────────────────────────────────────── */
@media (max-width: 767px){
  /* Body aanpassing voor mobiel */
  body{
    align-items: flex-start;  /* Bovenaan beginnen */
    overflow: hidden; /* Geen scroll */
  }

  /* Logo verbergen op mobiel */
  .brand{
    display: none;
  }

  /* Container aan de top */
  .container{
    padding: 120px 20px 0 20px; /* Top padding voor ruimte */
    margin-top: 0;
  }

  /* H1 mobiel */
  h1{
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  /* CTA text mobiel */
  .cta-text {
    font-size: 17px;
    padding: 16px 28px;
    margin-bottom: 16px;
    text-align: center;
  }

  /* CTA link mobiel */
  .cta{
    font-size: 17px;
    padding: 16px 28px;
    text-align: center;
  }

  /* Contactkaart onderaan met ruimte voor footer */
  .contact-card{
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 60px; /* Verhoogd om ruimte te maken voor footer */
    width: auto;
    padding: 20px;
  }

  /* Contactkaart tekst kleiner */
  .contact-card h2{
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-lines{
    font-size: 15px;
    gap: 8px;
  }

  /* Footer op mobiel */
  .footer{
    bottom: 10px;
    font-size: 10px;
    padding: 0 20px;
  }
}
