:root {
  --primary: #4b2e2e;
  --accent: #dab49d;
  --bg: #fdf9f4;
  --text: #3e3e3e;
  --white: #fff;
}

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

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

body {
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- HEADER --- */
.site-header {
  background: linear-gradient(to right, var(--primary), #5e3c3c);
  color: var(--white);
  padding: 30px 20px 20px;
  text-align: center;
}

.header-content {
  margin-bottom: 15px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.site-header h1 {
  font-size: 2em;
}

.tagline {
  font-style: italic;
  font-size: 1em;
  color: var(--accent);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 30px;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--accent);
}

/* --- MAIN --- */
.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px 50px;
  flex: 1;

  /* 2 kolommen */
  column-count: 2;
  column-gap: 40px;

  line-height: 1.6;
}

section {
  break-inside: avoid;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

section h2 {
  column-span: all;
  margin-bottom: 15px;
}

section h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
}

section p, section ul, blockquote {
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

blockquote {
  font-size: 1.1em;
  color: #6b4b4b;
  background: #f8f0e6;
  border-left: 5px solid var(--accent);
  padding: 15px 20px;
  font-style: italic;
  column-span: all;
  margin-top: 10px;
}

/* Afbeeldingen breedte max 100% */
.container img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 20px;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 25px;
  margin-top: auto;
}

/* --- ANIMATIE --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contactpagina container: geen 2 kolommen, maar 1 kolom */
.contact-container {
  column-count: auto !important; /* zet column count uit */
  display: block !important; /* forceer normale flow */
}

/* Secties onder elkaar, volle breedte */
.contact-container section {
  break-inside: auto !important; /* voorkom column break */
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  display: block;
}

/* Alle kinderen van section onder elkaar */
.contact-container section > * {
  display: block;
  margin-bottom: 15px;
}

/* Zorg dat ul binnen contact container normale bullet lijst blijft */
.contact-container ul {
  padding-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
}

/* Formulier stijlen */
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
}

/* Button stijl */
#contact-form button {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #3a2121; /* iets donkerder van var(--primary) */
}

/* Afbeelding in locatie sectie */
.contact-container img {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
  margin-bottom: 15px;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .container {
    column-count: 1; /* slechts 1 kolom op tablets */
    padding: 0 15px 40px;
  }

  nav ul {
    flex-direction: row;
    gap: 10px;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .site-header h1 {
    font-size: 1.5em;
  }

  .tagline {
    font-size: 0.95em;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 20px 10px 15px;
  }

  .site-header h1 {
    font-size: 1.3em;
  }

  .tagline {
    font-size: 0.85em;
  }

  .container,
  .contact-container {
    padding: 0 10px 40px;
  }

  .contact-container img {
    max-width: 100%;
    height: auto;
  }

  #contact-form input,
  #contact-form textarea {
    font-size: 0.95em;
  }

  #contact-form button {
    width: 100%;
    font-size: 1em;
  }

  nav ul {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- RESPONSIVE MENU --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2em;
  color: var(--white);
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin: 0 auto;
  }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
    background-color: var(--primary);
    border-radius: 8px;
    padding: 10px 0;
  }

  nav ul.nav-links.show {
    display: flex;
  }

  nav ul.nav-links li {
    margin: 10px 0;
  }
}

