/* ===============================
   BASIS / RESET / FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===============================
   HEADERS / HERO
   (alleen met class, niet globaal)
================================ */
.page-header,
.hero {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-header h1,
.page-header p,
.hero h1,
.hero p {
  color: #ffffff;
  margin: 0;
}

/* ===============================
   OVER MIJ (ZWART)
================================ */
#about,
.section-about {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px;
}

#about h2,
#about h3,
#about p,
#about li {
  color: #ffffff;
}

#about .card {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Inputs in over-mij */
#about input,
#about textarea,
#about select {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* ===============================
   ALGEMENE SECTIES
================================ */
section {
  background-color: #ffffff;
  color: #000000;
}

/* ===============================
   CARDS (Bootstrap-vriendelijk)
================================ */
.card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* ===============================
   PROJECTEN
================================ */
.project {
  background-color: #ffffff;
  color: #000000;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project h3 {
  color: #000000;
}

/* ===============================
   PROFIEL AFBEELDING
================================ */
#profile-photo {
  height: 300px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* ===============================
   FORM ELEMENTEN (ALGEMEEN)
================================ */
input,
textarea,
select {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* ===============================
   FOOTER
   (kleur via Bootstrap: bg-dark / bg-light)
================================ */
footer {
  padding: 20px 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .page-header,
  .hero {
    padding: 50px 15px;
  }

  .project {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ===============================
   BASIS / FONT
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===============================
   ALLE HEADERS (DONKERGRIJS)
================================ */
header {
  background-color: #1f1f1f !important; /* donkergrijs */
  color: #ffffff !important;
  text-align: center;
  padding: 70px 20px;
}

header h1,
header h2,
header h3,
header p,
header span {
  color: #ffffff !important;
}


header {
  background-color: #1e1e1e !important; /* donkergrijs */
  color: #ffffff !important;
  text-align: center;
}

header h1,
header h2,
header h3,
header p,
header span {
  color: #ffffff !important;
}

/* Bootstrap bg-light / bg-dark uitschakelen op headers */
header.bg-light,
header.bg-dark {
  background-color: #1e1e1e !important;
}

header .text-muted {
  color: #ffffff !important;
  opacity: 0.9; /* net iets zachter dan h1 */
}

.page-header {
  background-color: #f8f9fa; /* lichte grijs/wit zoals Bootstrap */
}


.page-header {
  background-color: #f8f9fa; /* zelfde lichte achtergrond */
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}
