/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
}
body {
  font-family: 'Inter', sans-serif;
  color: white;
  background: url('../images/achtergrond.jpg') no-repeat right center fixed;
  background-size: cover;
  scroll-behavior: smooth;
}
section h2 {
  margin-bottom: 1.5rem;
}
p {
  line-height: 1.6;
}
/* Links in tekst  */
a {
  color: #f5d36b; /* geel */
  text-decoration: none;
}

a:hover {
  color: #5a6c77; /* Iets donkerder grijsblauw voor hover effect */
  text-decoration: underline;
}
/* Lijstitems inspringen */
ul {
  padding-left: 2rem; /* Inspringing voor de lijst */
}

li {
  margin-bottom: 0.5rem; /* Ruimte tussen de lijstitems */
}


/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(30, 30, 30, 0.95);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 0 0 10px 10px; 	
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #f5d36b;
}

/* Language selector */
.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.language-selector a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0 0.25rem;
}
.language-selector a:hover {
  color: #f5d36b;
}
.language-selector span {
  color: #fff;
}

/* Hero text */
.tekst {
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

/* Buttons */
.belknop, .infoknop {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  padding: 0.7rem 1.5rem;
  margin: 0.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.3s ease;
}
.belknop:hover, .infoknop:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Overlay (Popup modal) */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.85);
  color: white;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 1000;
  text-align: center;
}
.overlay p {
  max-width: 600px;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.overlay button {
  background: white;
  color: black;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Legacy language block (can be removed if using .language-selector only) */
.taalkeuze {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
}
.taalkeuze a {
  color: white;
  text-decoration: none;
  margin: 0 0.3rem;
}
.taalkeuze a:hover {
  text-decoration: underline;
}

/* Main Sections */
section {
  padding: 5rem 2rem;
  background: rgba(0,0,0,0.4);
  margin: 1rem auto;
  max-width: 800px;
  border-radius: 10px;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 3rem 1rem 5rem; /* extra space for fixed nav */
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  width: 100%;
}
button {
  padding: 0.75rem;
  border: none;
  background: #0066cc;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}
/* Verzendknop met donkergroen */
button {
  padding: 0.75rem;
  border: none;
  background: #2e6a3f; /* Donkergroen */
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #245c33; /* Iets donkerder donkergroen voor hover effect */
}
.success {
  margin-top: 1rem;
  color: lightgreen;
  font-weight: bold;
  text-align: center;
}
footer {
  background-color: rgba(30, 30, 30, 0.6); /* transparanter dan 0.95 */
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: white; /* was #444, nu wit voor contrast op donkere achtergrond */
  margin-top: 40px;
  backdrop-filter: blur(6px); /* optioneel: geeft mooi ‘frosted glass’-effect */
  border-radius: 10px 10px 0 0;
}
/* Footer links */
footer a {
  color: #f5d36b; /* Amber kleur voor de footer links */
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #e2c050; /* Iets donkerder amber voor hover effect */
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: white;
  background:
    linear-gradient(rgba(8, 18, 28, 0.45), rgba(8, 18, 28, 0.55)),
    url('../images/achtergrond.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Hero */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-logo {
  width: min(360px, 80%);
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video section */
.video-section {
  position: relative;
}

.video-container {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.video-container video {
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  background: #000;
}

/* Lijsten beter laten inspringen */
ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Tekstlinks grijsblauw */
section p a,
section li a {
  color: #6a7f8c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

section p a:hover,
section li a:hover {
  color: #8da0ab;
}

/* Donkergroene verzendknop */
button {
  padding: 0.75rem;
  border: none;
  background: #2e6a3f;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: #245c33;
  transform: translateY(-1px);
}

/* Footer links amber */
footer a {
  color: #f5d36b;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #e2c050;
}

/* Responsive navbar fallback */
@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-inner {
    padding: 1.5rem;
  }
}
