
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Cinzel' regular;
  background: #1a1a1a;
  color: #333;
}

.banner {
  position: relative;
  height: 300px;
  background: #282827;
  text-align: center;
  overflow: hidden;
}




.banner img {
  position: absolute;
  width: 300px;
  opacity: 1;
}

.img1 { top: 0; left: 15px; z-index: 1; }
.img2 { top: 0; right: 15px; z-index: 2; }
.img3 { bottom: 0; left: 25%; z-index: 3; }
.img4 { bottom: 0; right: 25%; z-index: 4; }


.titel {
  text-align: center;
  margin: 30px 0;
  font-size: 1.8rem;
}


.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
  gap: 20px;
}

.fotos img {
  width: 100%;
  margin-bottom: 10px;
}

.tekst p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* 6. Video */
.video {
  text-align: center;
  margin: 30px;
}

.video iframe {
  width: 80%;
  height: 300px;
}

.links {
  background: #1a1a1a;
  padding: 20px;
  text-align: right;
}

.links ul {
  list-style: none;
}

.links li {
  margin: 10px 0;
}

.links a {
  text-decoration: none;
  color: #0077cc;
}


footer {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .info {
    display: flex;
    flex-direction: column;
  }

  .banner h1 {
    font-size: 1.5rem;
    padding-top: 50px;
  }

  .banner img {
    width: 80px;
  }

  .video iframe {
    width: 95%;
    height: 220px;
  }
}

body {
  background-color: #1a1a1a; 
  color: #f0f0f0; 
  font-family: 'lumos', serif; /* Klassiek lettertype */
  margin: 0;
  padding: 0;
  background-image: url('https://images.unsplash.com/photo-1549887534-3ec93abae527'); /* Magische achtergrond (pas aan!) */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1, h2, h3 {
  color: #d4af37; /* Goudkleurig voor titels */
  text-shadow: 2px 2px 6px black;
  font-family: 'Cinzel', serif; /* Voor nog meer magie, kan via Google Fonts */
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
}

a {
  color: #9d9dff; /* Magisch blauw/paars */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #cfcfff;
}

.container {
  background-color: rgba(0, 0, 0, 0.6); /* Doorzichtig zwart voor leesbaarheid */
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}
