
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: 'Playfair Display', serif; 
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CSS  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif; 
  line-height: 1.6;
  background-color: #1a1a1a;
  color: #f5f5f5;
}

/* Banner styling */
.banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-images img {
  position: absolute;
  width: 30%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.banner-images img:nth-child(1) {
  left: 0;
  top: 20px; /* Iets hoger */
  z-index: 4;
}

.banner-images img:nth-child(2) {
  left: 25%;
  top: 50px; /* Nog iets hoger */
  z-index: 3;
}

.banner-images img:nth-child(3) {
  left: 50%;
  top: 20px; /* Iets lager */
  z-index: 2;
}

.banner-images img:nth-child(4) {
  left: 75%;
  top: 50px; /* Middenpositie */
  z-index: 1;
}
/* Hover effect on images */
.banner-images img:hover {
  transform: scale(1.5);
}

.title h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 3em;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px #000;
}

.content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.images-and-description {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.images {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  position: relative; /* Relative positioning for child images */
}

.images img {
  width: 50%; /* Slightly reduce width to enhance the playful effect */
  border-radius: 10px;
  position: relative; /* Positioning images absolutely within their container */
  transition: transform 0.3s ease-in-out;
}

.images img:nth-child(2) {
  top: 0px;
  left: 10%;
  z-index: 2;
}

.images img:nth-child(1) {
  top: -25px;
  left: 45%;
  z-index: 1;
}
.images img:hover {
  transform: scale(1.5);
}

.description {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.description p {
  text-align: justify;
  color: #f5f5f5;
}

.media {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.video, .links {
  flex: 1;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
}
.links ul {
  list-style: none;
  text-align: center; /* Links worden gecentreerd */
}

.links ul li {
  margin-top: 40px;
  margin-bottom: 40px; /* Ruimte tussen elke link toevoegen */
}

.links ul li a {
  color: #f066ffbe;;
  text-decoration: none;
  font-weight: bold;
  position: relative; /* Relatieve positie voor de onderstreping */
}

links ul li a::after {
  content: ''; /* Onderstreping */
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f066ffdc;;
  transition: all 0.3s ease; /* Soepele overgang */
  opacity: 0; /* Standaard onzichtbaar */
}

.links ul li a:hover::after {
  opacity: 1; /* Onderstreping wordt zichtbaar bij hover */
}

.links ul::before,
.links ul::after {
  content: ''; /* Pseudo-elementen voor de strepen */
  display: inline-block;
  width: 200px; /* Breedte van de strepen */
  height: 2px; /* Hoogte van de strepen */
  background-color: #f066ffdc; /* Kleur van de strepen */
}

.links ul::before {
  margin-right: 20px; /* Afstand tot de eerste link */
}

.links ul::after {
  margin-left: 0%; /* Afstand tot de laatste link */
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #f5f5f5;
  margin-top: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  .content {
      flex-direction: column;
  }

  .images-and-description {
      flex-direction: column;
  }

  .banner {
    height: 280px; /* Hoogte van de banner */
    margin-bottom: 0px;
  }
  .images img {
    position: relative; /* Reset positioning on smaller screens */
    width: 50%;
  } 
  .images img:nth-child(2) {
    top: 0;
    left: 10%;
    z-index: 2;
  }
  
  .images img:nth-child(1) {
    top: -50px;
    left: 45%;
    z-index: 1;
  }
  .title h1 {
    text-align: center;
    margin: 15px 0;
  }
  .media {
    flex-direction: column; /* Media-items worden onder elkaar gestapeld */
    align-items: center; /* Items worden gecentreerd */
}

.video, .links {
    width: 100%; /* Video en links nemen de volledige breedte in op kleinere schermen */
    max-width: 600px; /* Maximale breedte van de video en links, aanpassen indien nodig */
}

.video {
  margin-bottom: 20px; /* Ruimte toevoegen onder de video */

  }
}
