/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

 :root {
  --red: #d42c2c;
  --red-dark: #b02020;
  --red-light: #fdf2f2;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --dark: #2c2c2c;
  --gray: #666;
  --gray-light: #f7f7f7;
  --white: #fff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  color: var(--red-dark);
}

/* === Header === */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 100%;
  width: auto;
  max-height: 120px;
}

.header-logo span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--white) 100%);
  padding: 80px 24px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 32px;
  border: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* === Sections === */
section {
  padding: 64px 24px;
}

section:nth-child(even) {
  background: var(--gray-light);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 24px;
  text-align: center;
}

/* === Diensten === */
.diensten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.dienst-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.dienst-card h3 {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.dienst-card .prijs {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0;
}

.dienst-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* === Over Radha === */
.over-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.over-foto {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.over-text h3 {
  color: var(--red);
  margin: 20px 0 8px;
  font-size: 1.1rem;
}

.over-text p {
  margin-bottom: 16px;
  color: var(--gray);
}

/* === Opleidingen === */
.opleidingen-lijst {
  list-style: none;
  max-width: 600px;
  margin: 24px auto 0;
}

.opleidingen-lijst li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
}

.opleidingen-lijst li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* === Werkgebied === */
.werkgebied-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.werkgebied-info p {
  color: var(--gray);
  margin-bottom: 16px;
}

.werkgebied-plaatsen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.werkgebied-plaatsen span {
  background: var(--white);
  border: 2px solid var(--red);
  color: var(--red);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* === Foto gallerij === */
.foto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.foto-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* === Keurmerken === */
.keurmerken {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.keurmerken img {
  height: 60px;
  width: auto;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.keurmerken img:hover {
  filter: grayscale(0%);
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-info h3 {
  color: var(--red);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info .icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 20px;
  width: 100%;
}

/* === Algemene Voorwaarden === */
.voorwaarden-tekst {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: left;
}

.voorwaarden-tekst h3 {
  color: var(--red);
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.voorwaarden-tekst h3:first-child {
  margin-top: 0;
}

.voorwaarden-tekst p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* === Footer === */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 32px 24px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ccc;
}

.site-footer .kvk {
  margin-top: 8px;
  font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    gap: 16px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .diensten-grid {
    grid-template-columns: 1fr;
  }

  .over-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .over-foto {
    max-width: 260px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .foto-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-logo span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .foto-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 40px 16px;
  }
}
