/* BASIS */
html, body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f3ee;
  color: #2f2f2f;
}

/* NOTICE BALK */
.notice-bar {
  background: #b30000;
  color: white;
  text-align: center;
  padding: 12px;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #436652;
  padding: 15px 25px;
  position: relative;
  color: white;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.groeitraject {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
}

.logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #C9A86A;
  text-shadow: 0 2px 5px rgba(0,0,0,0.25);
}

.logo img {
  height: 70px;
}

/* HAMBURGER KNOP */
.menu-toggle {
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 12px;
  z-index: 1100;
}

/* NAVIGATIE MENU */
nav {
  position: absolute;
  top: 100%;
  right: 0;
  background: #436652;
  width: 220px;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1050;
}

nav.show {
  display: flex;
}

nav a {
  padding: 15px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

nav a:hover {
  background: rgba(255,255,255,0.1);
}

nav a.active {
  background: rgba(255,255,255,0.18);
  font-weight: bold;
}

/* HERO */
.hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.35);
  background-blend-mode: darken;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.8s ease-in-out, transform 6s ease-out;
}

.hero-layer.active {
  opacity: 1;
  transform: scale(1.12);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  max-width: 900px;
  margin: 0 auto;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* NIEUWE REGEL: ABIDE IN JEZUS */
.hero-tagline {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
  opacity: 0.75;
}

/* TITEL */
.hero-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 20px 0;
  line-height: 1.2;
}

/* BIJBELTEKST */
.hero-content p {
  font-size: 18px;
  margin-top: 12px;
  opacity: 0.9;
  font-style: italic;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 26px;
  background: #436652;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn:hover {
  background: #365543;
  transform: translateY(-2px);
}

.section {
   max-width: 1280px;
  margin: 25px auto;
  padding: 35px 30px;
  background: #f3f7f2;
  border-radius: 14px;
  text-align: center;
}

/* titel blijft gecentreerd */
.section h2 {
  text-align: center;
  font-size: 36px;
  color: #436652;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

/* tekst wordt links en beter leesbaar */
.section p {
  text-align: left;
  max-width: 700px;
  margin: 0 auto 15px auto;
  line-height: 1.6;
}

.section.alt {
  background: #e4ede3;
}

.kernwaarden {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 25px auto;
}

/* CURSUS BOX */
.course-box {
  margin-top: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* FORMULIER */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

input, textarea, button {
  padding: 12px;
  border-radius: 10px;
  border: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: #436652;
  color: white;
  cursor: pointer;
}

/* NAAR HET BEGIN KNOP */
.to-start {
  margin-top: 25px;
  padding: 12px 20px;
  background: #436652;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.to-start:hover {
  background: #365543;
}

/* ZWEVENDE HOME KNOP */
.floating-home {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #436652;
  color: white;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 2000;
}

.floating-home:hover {
  background: #365543;
  transform: scale(1.1);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #436652;
  color: white;
}

.verborgen {
  display: none;
}

/* CONTACTGEGEVENS */
.contact-info {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-info h3 {
  margin-top: 0;
  color: #436652;
  text-align: center;
}

.contact-info p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.contact-info a {
  color: #436652;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-logo {
  width: 70px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}


/* MOBIEL */
@media (max-width: 600px) {

  .logo img {
    height: 50px;
  }

  .logo span {
    font-size: 24px;
  }

  .hero {
    height: 350px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  nav {
    width: 100%;
    border-radius: 0;
  }
.section {
  padding: 20px;
}

.section img {
  width: 100%;
  max-width: 100%;
}



}