/* =============================== */
/* 🌐 BASISINSTELLINGEN & RESET   */
/* =============================== */

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #f0f8ff, #e6e6fa);
  color: #333;
  margin: 0;
}

/* =============================== */
/* 🔝 HEADER & NAVIGATIE          */
/* =============================== */

header {
  background-color: #9c8bc1; /*purple medium*/
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  width: 160px;
  margin-bottom: 10px;
}

.logo.animate {
  animation: waveDance 1s ease-in-out;
}
@keyframes waveDance {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}
/* Hover-effect: extra kracht */
.logo:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: drop-shadow(0 0 10px #4b0082); /*purple dark*/
}

header h2 {
  font-size: 1.5em;
  color: #4b0082;
  margin: 0 5px;
}

div.relative {
  position: relative;
  left: -150px;
}

header h1 {
  font-size: 2.5em;
  color: #4b0082;
  margin: 0 5px;
}

main {
  padding-left: 30px;
  padding-right: 30px;
}


main h1 {
  font-size: 2.5em;
  color: #4b0082; --paars
  margin: 0 5px;
}

main h2 {
  font-size: 1.5em;
  color: #ffa500; -- oranje
  margin: 0 5px;
}
main h3 {
	color: #20b2aa; -- turquoise
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  background-color: #4b0082;
  padding: 8px 12px;
  border-radius: 5px;
}

nav a:hover {
  background-color: #483d8b;
}

.huidig{
	list-style: disc;
	color: white;
	border-bottom: 2px solid white;
	font-size: 120%;
	font-weight: bold;
}
.intro {
  text-align: center;
  padding: 30px 20px;
}

.cta-buttons {
  margin-top: 20px;
}

.btn {
  background-color: #6a5acd;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn.pink {
  background-color: #ff69b4;
}

.btn:hover {
  opacity: 0.9;
}

.gallery {
  padding: 20px;
  text-align: center;
}

.photos {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.photos img {
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.rooster {
  background-color: #fff8dc;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-left: 5px solid #ffa500;
}

.rooster ul {
  list-style: none;
  padding: 0;
}

.rooster li {
  margin: 10px 0;
  font-size: 1.1em;
}

footer {
  background-color: #d8bfd8;
  text-align: center;
  padding: 20px;
}

.mascotte {
  width: 120px;
  margin-bottom: 10px;
}
/* Hover-effect: extra kracht */
.mascotte:hover {
  transform: scale(1.1) rotate(6deg);
  filter: drop-shadow(0 0 10px #7871B7);
}

/*=====================*/
/*   BANNER HOMEPAGE   */
/*=====================*/
.banner-container {
  width: 100%;
  overflow: hidden;
  background-color: #6a4da6; /* Lavendel */
  color: #ffa500; /* Oranje */
  font-weight: bold;
  font-size: 2em;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-top: 3px solid #ffa500;
  border-bottom: 3px solid #ffa500;
}

.banner-tekst {
  display: inline-block;
  white-space: nowrap;
  animation: scrollBanner 20s linear infinite;
  padding-left: 100%;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}



/*========================*/
/*   BASISPASSEN PAGINA   */
/*========================*/
.danser:hover {
  transform: scale(1.1) rotate(6deg);
  filter: drop-shadow(0 0 10px #6CBC78);
} 


/*========================*/
/*   INFO PAGINA   */
/*========================*/
.tagline {
  font-style: italic;
  color: #ffa500;
  margin: 5px 0;
}

.subtitle {
  color: #20b2aa;
  margin-bottom: 20px;
  font-size: 1.5em
}
	
.info-geintegreerd {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f0f8ff; /* pasteltint uit je achtergrond */
  border-left: 5px solid #ffa500; /* oranje accent zoals in rooster */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  font-family: 'Quicksand', sans-serif;
  color: #333;
  line-height: 1.6;
}

.info-geintegreerd h2 {
  color: #4b0082; /* paars zoals in header */
  font-size: 1.6em;
  margin-top: 2rem;
  border-bottom: 2px solid #e6e6fa;
  padding-bottom: 0.4rem;
}

.info-geintegreerd ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.info-geintegreerd ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-geintegreerd ul li::before {
  content: "💃";
  position: absolute;
  left: 0;
  font-size: 1rem;
  color: #ff69b4; /* roze accent zoals in .btn.pink */
}

.info-geintegreerd p {
  margin: 1rem 0;
}

.info-geintegreerd blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #20b2aa; /* turquoise accent zoals in h3 */
  background-color: #e0ffff;
  color: #555;
}

.info-geintegreerd a {
  color: #4b0082;
  text-decoration: none;
  font-weight: bold;
}

.info-geintegreerd a:hover {
  text-decoration: underline;
}


.leden-carousel {
  max-width: 700px;
  margin: 3em auto;
  padding: 2em;
  background-color: #f9f9f9;
  border-radius: 8px;
  font-family: sans-serif;
  text-align: center;
}

.carousel-container {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  padding: 1em;
  border-left: 4px solid #ff6600;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.carousel-slide.active {
  display: block;
}

.carousel-slide p {
  font-style: italic;
  margin: 0;
}

.carousel-slide span {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
  color: #555;
}

.carousel-controls {
  margin-top: 1em;
}

.carousel-controls button {
  background-color: #20b2aa;
  color: white;
  border: none;
  padding: 0.5em 1em;
  margin: 0 0.5em;
  border-radius: 4px;
  font-size: 1.2em;
  cursor: pointer;
}

.cta {
  margin-top: 2em;
}

.cta-button {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #20b2aa;
  color: #ffa500;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}




.filters {
  margin: 20px 0;
  text-align: center;
}

.filters input,
.filters select,
.filters button {
  padding: 8px;
  margin: 5px;
  font-size: 1em;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}

thead {
  background-color: #f8f0ff;
  color: #4b0082;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 1em;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
  }

  td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #eee;
  }

  td::before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 45%;
    white-space: nowrap;
    font-weight: bold;
    color: #555;
  }

  td:nth-child(1)::before { content: "Naam"; }
  td:nth-child(2)::before { content: "Niveau"; }
  td:nth-child(3)::before { content: "Type"; }
  td:nth-child(4)::before { content: "Tellen"; }
  td:nth-child(5)::before { content: "Choreograaf"; }
  td:nth-child(6)::before { content: "Muziek"; }
  td:nth-child(7)::before { content: "Video"; }
}
.niveau-legenda {
  background-color: #f9f9f9;
  padding: 10px;
  border-left: 5px solid #ccc;
  font-family: sans-serif;
  font-size: 0.95em;
}

.uitgelichte-dansen h3 {
  color: #cc6600;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3em;
}
.uitgelichte-dansen ul {
  list-style-type: square;
  padding-left: 1.5em;
}

.stemknop {
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  margin-left: 10px;
  transition: transform 0.2s;
}

.stemknop:hover {
  transform: scale(1.2);
}

.uitgelicht-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: space-between;
}

.blok:nth-child(1) {
  order: 1; /* Nieuwste Dansen → rechts */
}

.blok:nth-child(2) {
  order: 2; /* Dans van de Maand → midden */
  border-left: 6px solid #6a4da6;
}

.blok:nth-child(3) {
  order: 3; /* Favorieten van de Groep → links */
}

.blok:hover {
	transform: scale(1.02);
}

/* =============================== */
/* 🎵 LESAVOND PLAYLISTS            */
/* =============================== */

.lesavond-blok h4 {
  font-size: 1.4em;
  color: #ff6600; /* Oranje titel */
  margin-bottom: 0.8em;
}

.lesavond-blok ul {
  list-style-type: disc;
  padding-left: 1.2em;
  margin-bottom: 1em;
}

.lesavond-blok li {
  margin-bottom: 0.4em;
  line-height: 1.4;
}

.lesavond-knoppen {
  display: flex;
  gap: 1em;
  margin-top: 0.5em;
}

.lesavond-knoppen a,
.lesavond-knoppen button {
  background-color: #6a4da6;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lesavond-knoppen a:hover,
.lesavond-knoppen button:hover {
  background-color: #ff6600;
}

/*=======================*/
/*     DANSEN PAGINA     */
/*=======================*/
/*   Lesavond Dropdown   */
/*=======================*/
label[for="select-lesavond"] {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.1em;
  color: #6a4da6; /* Lavendel */
}

#select-lesavond {
  width: 100%;
  max-width: 400px;
  padding: 0.6em 1em;
  font-size: 1em;
  border: 2px solid #6a4da6;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease;
}

#select-lesavond:hover,
#select-lesavond:focus {
  border-color: #ff6600; /* Oranje accent bij hover/focus */
  outline: none;
}

#select-lesavond {
  background-image: url("data:image/svg+xml;utf8,<svg fill='lavender' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em;
}

/* ====================================*/
/*Lesavond Dropdown in Uitgelicht-stijl*/
/*=====================================*/
.lesavond-selectie {
  background-color: #fff;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  margin-bottom: 2em;
  border-left: 6px solid #6a4da6;
}

.lesavond-selectie label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.1em;
  color: #6a4da6;
}

.lesavond-selectie select {
  width: 100%;
  max-width: 400px;
  padding: 0.6em 1em;
  font-size: 1em;
  border: 2px solid #6a4da6;
  border-radius: 8px;
  background-color: #f9f9f9;
  color: #333;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease;
}

.lesavond-selectie select:hover,
.lesavond-selectie select:focus {
  border-color: #ff6600;
  outline: none;
}

/* Scrollbare danslijst binnen het lesavond-blok */
.lesavond-blok ul {
  max-height: 300px; /* Pas dit aan naar wens */
  overflow-y: auto;
  padding-right: 1em; /* ruimte voor scrollbar */
  margin-bottom: 1em;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}




/* Optioneel: scrollbar iets stijlen */
.lesavond-blok ul::-webkit-scrollbar {
  width: 8px;
}

.lesavond-blok ul::-webkit-scrollbar-thumb {
  background-color: #6a4da6; /* Lavendel */
  border-radius: 4px;
}

.lesavond-blok ul::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/* 🎼 Watermerk via pseudo-element */
.playlist-container {
  position: relative;
  padding: 0,1em;

}

/* Watermerk-afbeelding */
.playlist-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px; /* of 100% als je het volledig mee wilt laten schalen */
  height: 600px;
  background-image: url('Afbeeldingen/musical-background-vector.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .playlist-container::before {
    display: none;
  }
}

/*@media screen and (max-width: 768px), (max-height: 500px) {
  .playlist-container::before {
    display: none;
  }
}*/



.lesavond-blok {
  position: relative;
  background-color: #fff;
  padding: 1.5em;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  border-left: 6px solid #6a4da6;
  z-index: 1; /* boven het pseudo-element */
}

.lesavond-blok {
  margin-bottom: 1.5em;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
  border-left: 6px solid #6a4da6;
  overflow: hidden;
}

.sluit-knop {
  float: right;
  background-color: #eee;
  border: none;
  color: #333;
  font-size: 0.9em;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 1em;
  transition: background-color 0.3s ease;
}

.sluit-knop:hover {
  background-color: #ff6600;
  color: #fff;
}



/* Toggle-knop */
.toggle-knop {
  width: 100%;
  text-align: left;
  background-color: #6a4da6;
  color: #fff;
  border: none;
  padding: 0.8em 1em;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-knop:hover {
  background-color: #ff6600;
}

/* Inhoud standaard verborgen */
.lesavond-inhoud {
  display: none;
  padding: 1em 1.5em;
}

/* Inhoud zichtbaar als 'open' class actief is */
.lesavond-inhoud.open {
  display: block;
}

/* Knoppen */
.lesavond-knoppen {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}

.lesavond-knoppen a,
.lesavond-knoppen button {
  background-color: #6a4da6;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  cursor: pointer;
}

.lesavond-knoppen a:hover,
.lesavond-knoppen button:hover {
  background-color: #ff6600;
}


/* =============================== */
/* 📱 MEDIA QUERIES | Responsief   */
/* =============================== */

@media screen and (max-width: 768px) {
  .lesavond-knoppen {
    flex-direction: column;
    align-items: flex-start;
  }

  .lesavond-knoppen a,
  .lesavond-knoppen button {
    width: 100%;
  }
}


.letterblok h2 {
  cursor: pointer;
  background-color: #eee;
  padding: 10px;
  border-radius: 6px;
  margin-top: 1em;
}

.dansblok {
  padding: 10px;
  background-color: #f9f9f9;
  border-left: 4px solid #ccc;
  border-radius: 6px;
}

h2[onclick] {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

h2[onclick]:hover {
  background-color: #ddd;
}



/* =============================== */
/* 📱 Mobielvriendelijke layout   */
/* =============================== */

@media (max-width: 600px) {
  .letterblok {
    width: 100%;
    margin-bottom: 10px;
  }

  .letterblok summary {
    padding: 1em;
    font-size: 1.2em;
  }
}

/* ✨ Highlight bij zoeken */
.highlight {
  background-color: #fffa9e;
  animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
  to { background-color: transparent; }
}

/* 🔄 Pijltje dat draait bij openklappen */
summary::after {
  content: "▶";
  float: right;
  transition: transform 0.3s;
}
details[open] summary::after {
  transform: rotate(90deg);
}

/* 🎵 Dansende animatie bij hover */
.dansje:hover {
  animation: bounce 0.5s;
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/*==================*/
/*   AGENDA PAGINA  */
/*==================*/

.agenda {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* --- Event styling --- */
.event {
  background-color: #fff8dc;
  border-left: 8px solid #ffa500;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.event.feestavond { border-left-color: #2598DA; background-color: #C2E2F5; } 
.event.country { border-left-color: #ff6600; background-color: #fdf5e6; }
.event.workshop { border-left-color: #138B33; background-color: #CBFABD; }
.event.verzoekjesdansen { border-left-color: #4b0082; background-color: #DCBDFA; }
.event.meerdaags { border-left-color: #20b2aa; background-color: #C2F4F2; }

.event:hover {
  transform: scale(1.02);
 /* background-color: #fff3c2; */
}

.countdown-blok:hover {
	transform: scale(1.02);
}

.weetje-blok:hover {
	transform: scale(1.02);
}

.throwback-blok:hover {
	transform: scale(1.02);
}

.raad-de-dans:hover {
	transform: scale(1.02);
}

.lesblok:hover {
	transform: scale(1.02);
}

.lesblok-dinsdag:hover {
	transform: scale(1.02);
}

.beginnerscursus:hover {
	transform: scale(1.05);
}

.event h3 {
  margin-top: 0;
  color: #8b0000;
}

.beginnerscursus h3 {
  margin-top: 0;
  color: #4b0082;
}


/* Layout om flyer naast tekst te zetten */
.event {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Opmaak flyer link */
.event-flyer img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/*=============================*/
/*   BLOKJES OP AGENDA PAGINA  */
/*=============================*/
/*      Lesrooster blokken     */
/*=============================*/

.lesrooster-breed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.lesblok {
  background-color: #fff8dc;
  border-left: 6px solid #ffa500;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 220px;
  max-width: 300px;
  margin-bottom: 15px;
}

.lesblok-dinsdag {
  background-color: #fff8dc;
  border-left: 6px solid #ffa500;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 220px;
  max-width: 300px;
  margin-bottom: 15px;
}

/* banner nwe locatie dinsdagavond */
.locatie-banner-container {
  width: 100%;
  overflow: hidden;
  background-color: #6a4da6; /* Lavendel */
  border-radius: 6px;
  margin-top: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.locatie-banner-tekst {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scrollLocatie 18s linear infinite;
  font-size: 0.95em;
  color: #fff;
  font-weight: bold;
}

@keyframes scrollLocatie {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


.beginnerscursus {
  background-color: #E7CAFC;
  border-left: 6px solid #4b0082;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 220px;
  max-width: 300px;
  margin-bottom: 15px;
}

.sectie-overgang h2 {
  border-bottom: 2px solid #ffa500;
  padding-bottom: 4px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #4b0082;
  font-size: 1.8em;
}



.agenda-wrapper p:first-of-type{
  margin-top: 0px;
}

.agenda-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.agenda {
  flex: 2;
  min-width: 300px;
}

.sidebar {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar div {
  background-color: #f9f0ff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



/*======Agenda pagina countdownblok==============*/

.countdown-blok {
  background-color: #fff3cd;
  border-left: 5px solid #ffa500;
  padding: 15px;
  border-radius: 8px;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: -50px;
}
.countdown-blok h4 {
  position: relative;
  margin-top: 0px;
  font-size: 1.2em;
}

.weetje-blok h4 {
	margin-top: 0;
	font-size: 1.2em;
}

.weetje-blok {
  background-color: #fff3cd;
  border-left: 5px solid #ffa500;
  padding: 15px;
  border-radius: 8px;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-top: -50px;
}

.raad-de-dans {
  border-left: 5px solid #ffa500;
  padding: 12px 16px;


  font-size: 1em;
  color: #333;

}

.raad-de-dans h3 {
  margin-bottom: 8px;
  margin-top: 0;
  font-size: 1.2em;
}

.raad-de-dans button {
  background-color: #ffa500;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 8px;
}





/* Mobiel vriendelijk - flyerlink onder tekst */
@media (max-width: 600px) {
  .event {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .event-flyer img {
    margin-top: 10px;
  }
}

/* =============================== */
/* 🧩 WORKSHOP PAGINA            */
/* =============================== */

.workshop {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f0f8ff; /* pasteltint uit je achtergrond */
  border-left: 5px solid #ffa500; /* oranje accent zoals in rooster */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  font-family: 'Quicksand', sans-serif;
  color: #333;
  line-height: 1.6;
}

.workshop h2 {
  color: #4b0082; /* paars zoals in header */
  font-size: 1.6em;
  margin-top: 2rem;
  border-bottom: 2px solid #e6e6fa;
  padding-bottom: 0.4rem;
}

.workshop ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.workshop ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.workshop ul li::before {
  content: url('Afbeeldingen/kyles-bullet.ico');©
  position: absolute;
  left: 0;
  font-size: 1rem;
  color: #ff69b4; /* roze accent zoals in .btn.pink */
}

.workshop p {
  margin: 1rem 0;
}

.workshop blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #20b2aa; /* turquoise accent zoals in h3 */
  background-color: #e0ffff;
  color: #555;
}

.workshop a {
  color: #4b0082;
  text-decoration: none;
  font-weight: bold;
}

.workshop a:hover {
  text-decoration: underline;
}

/*workshop pagina summary box*/

.workshop-layout {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  margin-top: 2em;
  align-items: flex-start;
}

.workshop-main {
  flex: 1 1 60%;
}

.workshop-summary {
  flex: 1 1 35%;
  background-color: #f9f0ff;
  border-left: 6px solid #ff6600;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1); /* 3D-effect */
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

.workshop-summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15); /* extra pop bij hover */
}

.workshop-summary h3 {
  margin-top: 0;
  color: #5a2a91;
  font-size: 1.2em;
}

.workshop-summary h3 {
  margin-bottom: 0.1em;
}

.workshop-summary h2 {
  margin-top: 0;
  margin-bottom: 0.3em;
}

.workshop-summary h4 {
  margin-top: 0;
  margin-bottom: 0.2em;
}


.workshop-summary ul {
  list-style: none;
}

.workshop-summary li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.workshop-summary ul li::before {
  content: '';
  position: absolute;
  left: 0;
  font-size: 1rem;
  color: #ff69b4; /* roze accent zoals in .btn.pink */
}

.cta-button {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1em;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}




@media (max-width: 768px) {
  .workshop-layout {
    flex-direction: column;
  }

  .workshop-summary {
    flex: 1 1 100%;
    margin-top: 1em;
  }
}

/*===========================*/
/*    PRINT CSS PLAYLISTS    */
/*===========================*/

@media print {
  body * {
    visibility: hidden !important;
  }

  .print-target,
  .print-target * {
    visibility: visible !important;
  }

  .print-target {
    display: block !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    font-size: 14pt !important;
    color: black !important;
    page-break-inside: avoid !important;
    background: white !important;
  }

  .playlist-container::before {
    display: none !important;
  }

  .lesavond-knoppen,
  .sluit-knop {
    display: none !important;
  }

  @page {
    size: A4;
    margin: 1cm;
  }
}

@media print {
  .print-target ul {
    max-height: none !important;
    overflow: visible !important;
  }
  .print-target ul {
  height: auto !important;
  padding-right: 0 !important;
  }

}


/* =============================== */
/* 📱 Responsive Header Layout     */
/* =============================== */

@media screen and (max-width: 1000px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  div.relative {
    left: 0;
    text-align: center;
  }

  header h1 {
    font-size: 2em;
    line-height: 1.2;
    text-align: center;
  }

  header h2 {
    font-size: 1.3em;
    text-align: center;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }

  nav a {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px;
    font-size: 1em;
  }
}


/* =============================== */
/* 🌟 Filterbox Styling            */
/* =============================== */

.filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  max-width: 700px;
  margin: 2em auto;
  padding: 1.5em;
  background: linear-gradient(135deg, #fffaf0, #f9f0ff);
  border: 3px solid #ffa500;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Quicksand', sans-serif;
  overflow: hidden;         /* voorkomt dat inhoud buiten de box valt */
  box-sizing: border-box;   /* houdt padding netjes binnen de breedte */
}


/* 🏷️ Labels netjes boven velden */
.filters label {
  font-weight: bold;
  font-size: 1.05em;
  margin-bottom: 0.3em;
  display: block;
}

/* 🎉 Icoontjes voor labels */
label[for="zoekveld"]::before { content: "🔍 "; color: #20b2aa; }
label[for="niveauFilter"]::before { content: "⭐ "; color: #ffa500; }
label[for="choreoFilter"]::before { content: "🎶 "; color: #4b0082; }

/* 🌈 Velden met kleuraccenten */
#zoekveld {
  border: 2px solid #20b2aa;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1em;
  width: 100%;
  max-width: 100%;         /* voorkomt dat het breder wordt dan de container */
  box-sizing: border-box;  /* zorgt dat padding niet de breedte oprekt */
}

#niveauFilter {
  border: 2px solid #ffa500;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1em;
  width: 100%;
}

#choreoFilter {
  border: 2px solid #4b0082;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1em;
  width: 100%;
 /* background-image: url("data:image/svg+xml;utf8,<svg fill='%234b0082' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M9 3v12.5c-0.8-0.3-1.7-0.5-2.5-0.5-2.5 0-4.5 1.5-4.5 3.5s2 3.5 4.5 3.5 4.5-1.5 4.5-3.5V7h7V3H9z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 1em;*/
}

/* ✨ Hover-effect */
#zoekveld:hover,
#niveauFilter:hover,
#choreoFilter:hover {
  box-shadow: 0 0 8px rgba(75,0,130,0.3);
  border-color: #ff6600;
}

/* 📊 Teller en knop */
#dansTeller {
  text-align: center;
  font-weight: bold;
  margin-top: 1em;
}

.filters button {
  background-color: #6a4da6;
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.filters button:hover {
  background-color: #ff6600;
}

/* 📱 Mobielvriendelijk */
@media screen and (max-width: 600px) {
  .filters {
    padding: 1em;
  }

  #dansTeller {
    text-align: left;
  }
}


/* =============================== */
/*     TOOLTIPS DANSLIJST          */
/* =============================== */

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #6a4da6;
  color: #fff;
  text-align: center;
  font-style: italic;
  font-size: 0,2em;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* =============================== */
/* KERSTBOODSCHAP                  */
/* =============================== */

.kerstboodschap {
  max-width: 700px;
  margin: 2em auto;
  padding: 1.8em 2.2em;
  background: linear-gradient(135deg, #fff5f5, #f9e8ff);
  border: 3px solid #ff4d4d;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Titel */
.kerstboodschap h2 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #c62828;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Tekst */
.kerstboodschap p {
  font-size: 1.25em;
  line-height: 1.6;
  color: #4a2c2c;
}

/* 🎄 Kleine decoratie bovenaan */
.kerstboodschap::before {
  content: "🍾";
  font-size: 2.8em;
  display: block;
  margin-bottom: 0.3em;
}

/* ✨ Kleine decoratie onderaan */
.kerstboodschap::after {
  content: "✨";
  font-size: 2.2em;
  display: block;
  margin-top: 0.3em;
  animation: sparkle 1.5s infinite ease-in-out;
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
  100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
}

/* Glittereffect jaartal*/
.glitter-sparkle {
  font-weight: bold;
  background: linear-gradient(90deg, #f7e98e, #ffd700, #f7e98e);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.glitter-sparkle::after {
  content: "✨";
  position: absolute;
  right: -1.2em;
  top: -0.2em;
  animation: sparkle 1.5s infinite ease-in-out;
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
  100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
}




