/* =======================
   BASIS
======================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 40%, #111 100%);
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* =======================
   NAV
======================= */

nav {
  width: 100%;
  background: #000;
  padding: 18px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  margin: 0 25px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: gold;
  transition: 0.3s ease;
}

nav a:hover {
  color: gold;
}

nav a:hover::after {
  width: 100%;
}

/* =======================
   HERO (LOGO + FOTO)
======================= */

.hero {
  padding: 120px 20px;
  text-align: center;
  background: none;
  height: auto;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  display: none;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Logo */
.hero-logo-new {
  width: 320px;
  max-width: 90%;
  height: auto;
  display: block;
}

/* Foto normaal, geen cirkel */
.hero-photo-new {
  width: 450px;
  height: auto;
  object-fit: cover;
  display: block;
  
}

/* =======================
   SECTIONS (NIET HERO)
======================= */

section:not(.hero) {
  padding: 100px 10%;
  text-align: center;
  position: relative;
  border-radius: 20px;
  margin: 80px 5%;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
  transition: 0.3s ease;
}

section:not(.hero):hover {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.15);
}

section:not(.hero)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
}

section:not(.hero):last-of-type::after {
  display: none;
}

section:not(.hero) h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: gold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* =======================
   GRID & CARDS
======================= */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: rgba(255, 215, 0, 0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  transition: 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

/* =======================
   AGENDA SPECIFIEK
======================= */

.agenda-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.agenda-container .month-title {
  font-size: 28px;
  font-weight: 700;
  color: gold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  margin-bottom: 20px;
  text-align: center;
}

.agenda-container .grid-3 {
  display: flex;
  flex-direction: column; /* items onder elkaar */
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px; /* breedte van agenda-items */
}

/* =======================
   FOOTER
======================= */

footer {
  background: #000;
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.4);
  margin-top: 80px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
  line-height: 1.8;
}

.footer-bottom a {
  color: #aaa;
}

.footer-bottom a:hover {
  color: gold;
}

/* =======================
   RESPONSIVE
======================= */

@media (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  nav a {
    margin: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding: 80px 20px;
  }

  /* logo blijft groot mobiel */
  .hero-logo-new {
    width: 640px;
    max-width: 100%;
  }

  /* foto kleiner mobiel */
  .hero-photo-new {
    width: 220px;
    height: auto;
  }

  section:not(.hero) {
    padding: 80px 8%;
  }
}

@media (max-width: 480px) {
  .hero-photo-new {
    width: 200px;
    height: auto;
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  section:not(.hero) {
    padding: 70px 8%;
    margin: 60px 3%;
  }

  section:not(.hero) h2 {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  .hero-logo-new {
    width: 1000px;
  }

  .hero-photo-new {
    width: 450px;
    height: auto;
  }
}