/* i18n.css — Taalwisselaar en gedeelde pagina-stijlen */

/* ============================================================
   TAALWISSELAAR
   ============================================================ */
.lang-switcher {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-switcher a {
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}

.lang-switcher a:hover {
  color: #00985A;
}

.lang-switcher .lang-active {
  color: #00985A;
}

/* ============================================================
   NAVIGATIE
   ============================================================ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 48px;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.nav-logo {
  height: 36px;
  width: auto;
  margin-right: 16px;
}

.site-nav a {
  color: #444;
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav a:hover,
.site-nav a.nav-active {
  color: #00985A;
}

/* ============================================================
   PAGINA CONTENT
   ============================================================ */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 120px;
  font-family: 'Nunito Sans', sans-serif;
}

.page-content h1 {
  font-family: 'Noto Serif', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #14181C;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

/* ============================================================
   CONTACTFORMULIER
   ============================================================ */
.contact-section {
  padding-top: 40px;
}

.contact-intro {
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #14181C;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #14181C;
  background: #fafafa;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00985A;
  box-shadow: 0 0 0 3px rgba(0, 152, 90, 0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: #00985A;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}

.btn-primary:hover {
  background: #007a47;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Turnstile widget uitlijning */
.cf-turnstile {
  margin: 4px 0;
}

/* ============================================================
   COOKIE BANNER (AVG/GDPR)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: #14181C;
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9000;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner p {
  margin: 0;
  color: #ccc;
  line-height: 1.5;
}

.cookie-banner a {
  color: #00985A;
  text-decoration: underline;
}

.cookie-banner button {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #14181C;
  background: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-banner button:hover {
  background: #e8e8e8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid #f0f0f0;
}

.site-footer a {
  color: #888;
  text-decoration: none;
}

.site-footer a:hover {
  color: #00985A;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .site-nav {
    padding: 16px 20px;
    gap: 16px;
    font-size: 14px;
  }

  .lang-switcher {
    top: 12px;
    right: 12px;
    font-size: 12px;
    padding: 5px 12px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}
