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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2b2b2b;
  background: #f6f6f6;
  line-height: 1.6;
}

/* CONTAINER */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;   /* volledige schermhoogte */
  width: 100%;
  background: url("interieur.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* BRAND */

.brand {
  margin-bottom: 50px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  margin: auto;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 1px;
}

/* HERO CONTENT */

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.intro {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

/* BUTTONS */

.cta-group {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.25s;
}

.btn-primary {
  background: white;
  color: #222;
}

.btn-primary:hover {
  background: #eaeaea;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #222;
}

/* INFO SECTION */

.info {
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card h2 {
  margin-bottom: 10px;
  font-weight: 500;
}

/* LINKS */

.links {
  padding-bottom: 60px;
}

.links-card {
  background: white;
  padding: 40px;
  border-radius: 6px;
  text-align: center;
}

.links-card h2 {
  margin-bottom: 20px;
  font-weight: 500;
}

.links-list {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.text-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
}

.text-link:hover {
  border-color: #000;
}

/* RESPONSIVE */

@media (max-width: 800px) {

  .hero-content h1 {
    font-size: 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 500px) {

  .hero-content h1 {
    font-size: 26px;
  }

  .intro {
    font-size: 16px;
  }

}