* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(44, 54, 57, 0.9);
  padding: 10px 20px;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar li {
  margin: 0 15px;
}

.navbar a {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  color: #DCD7C9;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #A2785B;
}

.navbar a.active {
  color: #A2785B;
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #DCD7C9;
}


iframe[src*="youtube.com"] {
  width: 100% !important;
  /* Pas 800px aan naar wat jij mooi vindt voor desktop */
  max-width: 800px !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  display: block;
  margin: 20px auto;
  /* Centreert het filmpje op je pagina */
  border: none;
  border-radius: 8px;
  /* Optioneel: geeft mooie afgeronde hoekjes */
}

@media (max-width: 768px) {
  iframe[src*="youtube.com"] {
    height: calc(100vw * 0.5625) !important;
    max-height: 450px;
  }
}

/* Home sectie */
section.home {
  min-height: 100vh;
  background-image: url('background-home.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DCD7C9;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  section.home {
    background-attachment: scroll;
    min-height: -webkit-fill-available; 
    background-size: cover;
    background-position: center center;
  }
}

.section.home .overlay {
  background-color: rgba(162, 123, 107, 0.5);
  margin: 20px 20px 20px 20px;
  padding: 40px;
  border-radius: 10px;
}

.section.home h1 {
  font-size: 3rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.section.home h2 {
  font-size: 2rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  ;
}

#portfolio {
  padding: 20px 20px;
  background: #DCD7C9;
  color: #2C3639;
  text-align: center;
}

.section.portfolio h1 {
  font-size: 3rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;

}

.section.portfolio h2 {
  font-size: 2rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.section.portfolio p.titel {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.section.portfolio p.lied {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: bold;
}

.section.portfolio p.beschrijving {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 15px;
  cursor: pointer;
  z-index: 1;
  font-size: 24px;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.carousel-btn.hidden {
  opacity: 0;
  pointer-events: none;
}


/* OVER ANGELIQUE */
.section.overangelique {
  min-height: 100vh;
  background-image: url('background2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
.section.overangelique {
    background-attachment: scroll;
    min-height: -webkit-fill-available; 
    background-size: cover;
    background-position: center center;
  }
}


.section.overangelique::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(162, 123, 107, 0.4);
  /* Zwarte overlay met 40% transparantie */
  z-index: 1;
}

.section.overangelique .overlay {
  background-color: rgba(44, 54, 57, 0.6);
  padding: 40px;
  margin: 20px 20px 20px 20px;

  border-radius: 10px;
  z-index: 2;
  color: #DCD7C9;

}

.section.overangelique p {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: bold;
  margin: 0 0 1em;
  line-height: 1.6;
}

.section.overangelique h1 {
  font-size: 3rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;

}

.section.overangelique h2 {
  font-size: 2rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

/* LESSEN */
#lessen {
  padding: 20px 20px;
  background: rgba(162, 123, 107);
  color: #DCD7C9;
  text-align: center;
}

.section.lessen h1 {
  font-size: 3rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;

}

.section.lessen h2 {
  font-size: 2rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.section.lessen p.titel {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-size: 1.5rem;
}

.section.lessen p.tekst {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: bold;
}


button.lessen {
  background-color: rgba(220, 215, 201);
  font-family: Coperplate, "Copperplate Gothic Light", fantasy;
  margin-top: 10px;
  border: none;
  color: rgba(44, 54, 57);
  padding: 15px;
  cursor: pointer;
  z-index: 1;
  font-size: 1.25rem;
  border-radius: 10px;
}

button:hover {
  background-color: rgba(44, 54, 57);
  color: rgba(220, 215, 201);
}

/* AGENDA */

#agenda {
  padding: 20px 20px;
  background: #DCD7C9;
  color: #3F4E4F;
  text-align: center;
}

.section.agenda h1 {
  font-size: 3rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;

}

.section.agenda h2 {
  font-size: 2rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.section.agenda p.titel {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-size: 1.5rem;
}

.section.agenda p.lied {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: bold;
}

.section.agenda p.beschrijving {
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.section.agenda img {
  width: 80%;
  height: 300px;
  /* of 200px, wat jij wil */
  object-fit: cover;
  /* 👈 Bijsnijden */
  object-position: middle;
  /* 👈 Focus op het midden van de foto */
  border-radius: 10px;
  /* optioneel: ronde hoeken */
}

button {
  background-color: rgba(63, 78, 79);
  font-family: Coperplate, "Copperplate Gothic Light", fantasy;
  margin-top: 10px;
  border: none;
  color: white;
  padding: 15px;
  cursor: pointer;
  z-index: 1;
  font-size: 1.25rem;
  border-radius: 10px;
}

button:hover {
  background-color: rgba(44, 54, 57);
}

/* CONTACT */

#contact {
  color: #DCD7C9;
}

.section.contact {
  min-height: 100vh;
  background-image: url('contact.jpg');
  background-size: cover;
  background-position: 0% 25%;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .section.contact {
    background-attachment: scroll;
    min-height: -webkit-fill-available; 
    background-size: cover;
    background-position: center center;
  }
}

.section.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(44, 54, 57, 0.6);
  /* Groene overlay met 60% transparantie */
  z-index: 1;
}

.section.contact .overlay {
  background-color: rgba(162, 123, 107, 0.8);
  padding: 40px;
  margin: 20px 20px 20px 20px;
  width: 75%;

  border-radius: 10px;
  z-index: 2;

}

.section.contact h1 {
  font-size: 3rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;


}

.section.contact h2 {
  font-size: 2rem;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.section.contact p {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-size: 1rem;
  margin: 0 0 1em;
  line-height: 1.6;
}

.contact-form input,
.contact-form textarea {
  color: #2C3839;
  padding: 10px;
  font-size: 1em;
  margin-top: 5px;
  border: 1px solid #ccc;
  min-width: 50%;
  border-radius: 5px;
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}


.contact-form textarea {
  resize: vertical;
  min-height: 100px;

}

.contact-form button {
  margin-top: 15px;
  padding: 10px;
  background-color: #DCD7C9;
  color: #2C3839;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-size: 1.20em;
}

.contact-form button:hover {
  background-color: #2C3839;
  color: #DCD7C9;
}

#footer {
  background-color: rgba(44, 54, 57);
  color: rgba(220, 215, 201);
  text-align: center;
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  font-size: 0.75rem;
}