:root {
  --groen: #2e5c1e;
  --groen-licht: #3d7a28;
  --groen-hover: #245016;
  --creme: #f7f2eb;
  --creme-dark: #ede8e0;
  --tekst: #1a1a1a;
  --grijs: #6b7280;
  --grijs-licht: #e5e7eb;
  --wit: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.13);
}

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

a {
  color: var(--groen);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: #d6d0c8;
  color: var(--tekst);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.6;
}

.page-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  background: var(--creme);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1140px) {
  .page-wrapper {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* HEADER */
header {
  background: var(--groen);
  background-image: linear-gradient(135deg, #2e5c1e 0%, #3d7a28 100%);
  color: white;
  padding: 2rem 2rem 1.8rem;
}

header a {
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-logo-link {
  display: flex;
}

.header-logo {
  height: 85px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.header-tekst {
  flex: 1;
}

.tagline-top {
  font-size: 0.82rem;
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

h1 span {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 400;
  margin-bottom: 0.2em;
}

.pijlers {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
}

/* NAV */
nav {
  background: #234d17;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    background 0.15s,
    color 0.15s;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: white;
  opacity: 0;
  transition: opacity 0.15s;
}

nav ul li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

nav ul li a:hover::after {
  opacity: 0.5;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
  .hamburger {
    display: flex;
  }

  .nav-inner {
    position: relative;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #234d17;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul.open {
    display: flex;
  }

  nav ul li a {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* MAIN */
main {
  flex: 1;
}

/* SECTIE */
.sectie {
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.sectie h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--groen);
  margin-bottom: 2rem;
  text-align: center;
}

/* VERWACHTEN GRID */
.verwachten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.verwachten-grid .groep {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.verwachten-grid .groep h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--groen);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--creme-dark);
}

.verwachten-grid .groep ul {
  list-style: none;
  font-size: 0.95rem;
  line-height: 2.1;
  color: #374151;
}

.verwachten-grid .groep ul li::before {
  content: "→ ";
  color: var(--groen);
  font-size: 0.8em;
}

/* EVENT FEATURED */
.event-featured {
  background: var(--groen);
  background-image: linear-gradient(135deg, #2e5c1e 0%, #3d7a28 100%);
  color: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 0 1.5rem 3rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 30px rgba(46, 92, 30, 0.25);
}

.event-featured .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.event-featured h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: white;
  margin-bottom: 0.5rem;
  text-align: left;
  font-weight: 600;
}

.event-featured .subtitel {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.event-featured a {
  color: rgba(255, 255, 255, 0.9);
}

.event-featured .details {
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.2rem;
}

/* EVENT CARDS */
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-card {
  background: var(--wit);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--tekst);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.event-card-img {
  flex-shrink: 0;
}

.event-card-img img,
.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.event-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  flex: 1;
}

.event-date {
  font-size: 0.78rem;
  color: var(--groen);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.event-location {
  font-size: 0.82rem;
  color: var(--grijs);
  margin-top: 0.4rem;
}

.event-cards--past .event-card {
  opacity: 0.6;
}

/* AGENDA SECTIE */
.agenda-sectie {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.agenda-sectie > h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--groen);
  margin-bottom: 0.5rem;
}

.agenda-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grijs);
  border-bottom: 2px solid var(--grijs-licht);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

/* EVENT DETAIL */
.event-detail {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--groen);
  text-decoration: none;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition: gap 0.15s;
}

.back-link:hover {
  gap: 0.6rem;
}

.event-detail > h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.event-meta span {
  background: var(--creme-dark);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  color: #374151;
  font-weight: 500;
}

.event-meta .event-date {
  background: var(--groen);
  color: white;
  text-transform: none;
}

.event-main-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

/* GALLERY */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-item figcaption {
  font-size: 0.78rem;
  color: var(--grijs);
  margin-top: 0.35rem;
  text-align: center;
}

/* PAGE CONTENT */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--groen);
  margin-bottom: 1.5rem;
}

.content-body {
  line-height: 1.9;
  font-size: 1rem;
  color: #374151;
}

.content-body p {
  margin-bottom: 1.1rem;
}
.content-body h2,
.content-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--groen);
  margin: 1.5rem 0 0.8rem;
}

/* CONTACT BLOK */
.contact-blok {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-blok p {
  font-size: 1rem;
  line-height: 2.2;
  color: #374151;
}

.contact-blok a {
  color: var(--groen);
  text-decoration: none;
  font-weight: 500;
}

.contact-blok a:hover {
  text-decoration: underline;
}

.contact-blok .gratis {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--groen);
  color: white;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* BTN */
.btn {
  display: inline-block;
  background: var(--groen);
  color: white;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn:hover {
  background: var(--groen-hover);
  transform: translateY(-1px);
}

/* LOGIN */
.login-section {
  max-width: 420px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  color: var(--groen);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.login-form p {
  margin-bottom: 1rem;
}

.login-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.login-form input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--grijs-licht);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--creme);
}

.login-form input:focus {
  outline: none;
  border-color: var(--groen);
}

/* CONTACT FORM */
.contact-form {
  max-width: 560px;
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--grijs-licht);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--wit);
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--groen);
}

.form-message {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.form-message--success {
  background: #dcfce7;
  color: #166534;
}
.form-message--error {
  background: #fee2e2;
  color: #991b1b;
}

/* GEEN ITEMS */
.geen-items {
  color: var(--grijs);
  font-style: italic;
  padding: 2rem 0;
}

/* FOOTER */
footer {
  background: #111;
  color: #9ca3af;
  padding: 1.8rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.8rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .header-logo {
    height: 65px;
  }
  h1 {
    font-size: 1.6rem;
  }
  .verwachten-grid {
    grid-template-columns: 1fr;
  }
  .event-cards {
    grid-template-columns: 1fr;
  }
  .event-featured {
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .sectie {
    padding: 2.5rem 1rem;
  }
}
