body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #974320;
}

main {
  font-size: 1.156em;
  font-weight: 500;
  color: black;
}

html {
  scroll-behavior: smooth;
}

/* Alleen op grotere schermen */
@media (min-width: 700px) {
  .content {
    max-width: 700px;     /* vaste maximum breedte */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
}

/* Titel */
.hero {
  justify-content: center; /* centreert de inhoud horizontaal */
  padding: 60px; /* Voeg wat ruimte toe rondom de inhoud */
  padding-top: 150px; /* Extra ruimte onder de tekst */
  padding-bottom: 100px; /* Extra ruimte onder de tekst */
  position: relative;     /* maakt het makkelijker om t.o.v. deze sectie uit te lijnen */
}

.hero-text {
  margin: 0;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 2.7em;
  letter-spacing: 1px;
  text-align: center; /* Centreert de tekst */
}

a {
  color: white;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.2s ease-in-out;
}

a:hover::after {
  width: 100%;
}

.hero h2 {
  color: white;
  margin-top: 0.5rem;
  font-size: 1.3em;
  text-align: center; /* Centreert de tekst */
  font-style: italic;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text {
    margin-left: 0;
  }
}

.quotes {
  background: #f0f0f0;
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1000px) {
  .quotes {
    max-width: 1000px;     /* vaste maximum breedte */
    margin-left: auto;
    margin-right: auto;
  }
}

.quote {
  min-height: 150px; /* Stel een minimale hoogte in */
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  font-style: italic;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.quote.small-font {
  font-size: 1em !important; /* Kleiner lettertype voor lange quotes */
}

.quote.visible {
  opacity: 1;
}

.quote-meta {
  font-size: 0.6em; /* Maakt de tekst kleiner dan de quote */
  color: #666; /* Geeft een subtiele, minder opvallende kleur */
  margin-top: 10px;
}


.quotes button {
  font-size: 1.5em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.quotes button:hover {
  color: #684E36;
}

.quote-btn {
  background-color: #ddd;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2em;
  color: #555;
  cursor: pointer;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #ccc;
}
