
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #F1EDE2;
    color: #2D2B27;
    margin: 0;
}
header {
    background-color: #2D2B27;
    color: #F1EDE2;
    padding: 1rem 0;
}
header h1 {
    margin: 0;
    padding-left: 1rem;
}
nav {
    margin-top: 0.5rem;
    padding-left: 1rem;
}
nav a {
    margin-right: 1rem;
    color: #F1EDE2;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}
main {
    background-color: #F1EDE2;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
footer {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    background-color: #eee;
    font-size: 0.9rem;
}

.custom-contact {
  background: #eaf3fc;
  padding: 2.5rem;
  border-radius: 24px;
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.1);
}

.custom-contact form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-field.full {
  width: 100%;
}

.custom-contact label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.custom-contact input,
.custom-contact select,
.custom-contact textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 0.4rem 0;
  font-size: 1rem;
  color: #111;
  margin-bottom: 0.5rem;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.custom-contact input:focus,
.custom-contact textarea:focus,
.custom-contact select:focus {
  outline: none;
  border-bottom: 2px solid #0077cc;
}

.custom-contact button {
  align-self: flex-start;
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.custom-contact button:hover {
  background-color: #004b99;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
 }
/* ─── HERO SLIDER SELF-CONTAINED ──────────────────────── */

/* parent header full-width, donkerblauw */
.hero-slideshow {
  width: 100%;
  background: #2D2B27;
  overflow: hidden;
  padding: 0;
}

/* inner wrapper exactly content-width */
.hero-slideshow .slider-inner {
  max-width: 1200px;         /* match jouw gewone .container */
  margin: 0 auto;
  width: 100%;
  height: 500px;
  position: relative;
    overflow: hidden;
}

/* Swiper container vult hele wrapper */
.hero-slideshow .swiper-container {
  width: 100%;
  height: 100%;
    overflow: hidden;
}

/* Slide-afbeeldingen altijd cover, nooit contain */
.hero-slideshow .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* ← belangrijk verschil */
  object-position: center;
  display: block;
}

/* Overlay erboven */
.hero-slideshow .header-text-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 10;
  color: #F1EDE2;
}

/* main-content ligt er netjes onder */
main.container {
  position: relative;
  z-index: 1;
}

/* ─── LOGO RECHTSBOVEN IN HEADER ───────────────────── */
.hero-slideshow .slider-inner {
  position: relative;    /* wrapper staat nu position:relative */
}

.hero-slideshow .header-logo {
  position: absolute;
  top: 1rem;             /* afstand tot bovenkant */
  right: 1rem;           /* afstand tot rechterkant */
  z-index: 20;           /* bovenop slider en overlay */
}

.hero-slideshow .header-logo img {
  max-height: 60px;      /* pas die hoogte gerust aan */
  width: auto;
  display: block;
}

