/* === BASISSTIJL === */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER MET OVERLAY === */
.under-construction-header {
  background-image: url('ReShare-Living-Group-header.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.under-construction-header .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 116, 128, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.under-construction-header h1 {
  font-size: 2.5rem;
}

.under-construction-header p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* === SECTIES ALGEMEEN === */
section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #007480;
}

/* === BEDRIJVEN BLOKKEN === */
.bedrijf {
  background: #f9f9f9;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 6px solid #007480;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.bedrijf img {
  max-width: 120px;
  height: auto;
}

.bedrijf-content {
  flex: 1;
}

/* === KNOPPEN === */
.button {
  display: inline-block;
  background: #007480;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 1rem;
  width: 200px;
  text-align: center;
  transition: background 0.3s;
}

.button:hover {
  background: #005e66;
}

/* === MISSIE BLOK === */
.missie-blok {
  background: #79b2b5;
  color: white;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 8px;
}

.missie-blok h3 {
  margin-top: 0;
}

.missie-blok ul {
  list-style: none;
  padding: 0;
}

.missie-blok li::before {
  content: '✓';
  color: white;
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
}

/* === FOOTER === */
footer {
  background-color: #007480;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.footer-content a {
  color: #E5F6F7;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .under-construction-header {
    height: 250px;
  }

  .under-construction-header h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .under-construction-header p {
    font-size: 1rem;
    line-height: 1.3;
  }

  .bedrijf {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bedrijf img {
    margin-bottom: 1rem;
  }

  .bedrijf .button {
    margin: 1.5rem auto 0;
  }

  .button {
    width: 80%;
  }