.hero {
  height: 100vh;
  background: url("../images/hero.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
}
/* Basis font voor alle tekst */
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333; /* nette donkergrijze tekstkleur */
}

/* Koppen met Roboto Condensed */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}

/* Extra stijl voor hero titel */
.hero h1 {
  font-size: 3rem;  /* schaalbaar */
  font-weight: 700;
  color: #fff; /* witte tekst over de hero-foto */
}

/* Basis navbar */
.navbar {
  position: fixed;       /* blijft vast staan */
  width: 100%;
  z-index: 9999;         /* altijd boven content */
  transition: transform 0.4s ease, opacity 0.4s ease; 
  transform: translateY(0);
  opacity: 1;
}

/* Verborgen navbar */
.navbar.hide {
  transform: translateY(-100%);
  opacity: 0;
}

#about h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

#cast {
  background-color: #888; /* zelfde grijstint als in je screenshot */
}

#cast img {
  object-fit: cover;
  border: 5px solid #fff; /* witte rand om de foto’s */
}

#cast h5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 1px;
}

#cast small {
  display: block;
  color: #eee;
  margin-top: 5px;
  font-size: 0.9rem;
}

.speellijst {
  height: 60vh; /* of 100vh voor fullscreen */
  background: url("../images/speellijst-bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}

.speellijst::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); /* donkere overlay */
  backdrop-filter: blur(3px);   /* lichte blur voor vaag effect */
}

.speellijst .container {
  position: relative;
  z-index: 1; /* tekst boven overlay */
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  border: 2px solid #000;   /* zwarte rand */
  border-radius: 50%;       /* rond */
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #000;    /* bij hover zwart vullen */
  color: #fff;         /* icon wordt wit */
}

.uitgesteld {
  font-weight: 100;     /* dun */
  font-size: 2rem;      /* evt. iets kleiner dan de titel */
  letter-spacing: 2px;  /* optioneel */
  margin-top: 0.2em;    /* dichter op Green Mirror Hotels */
}

.navbar {
  background: transparent !important;  /* geen donkere overlay */
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;  /* lichter wit */
  font-weight: 400;
}

.navbar .nav-link:hover {
  color: #fff !important;  /* helder wit bij hover */
}

@media (max-width: 768px) {
  .navbar .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
  }
}

.hero-content h1 {
  font-weight: 700;   /* dik vet voor de titel */
  margin-bottom: 0.2em; /* weinig ruimte naar beneden */
}

.hero-content .uitgesteld {
  font-weight: 100;   /* dun (thin) */
  font-size: 2rem;    /* kleiner */
  margin-top: 0;      /* geen extra marge erboven */
}

.hero-content {
  transform: translateY(80%); /* schuift de tekst 80% naar beneden */
}