.social-buttons {
  margin-bottom: 16px;
  text-decoration: none;
}
.social-icon {
  width: 5%;
  height: auto;
  min-width: 40px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  text-decoration: none;
}
.social-icon:last-child {
  margin-right: 0;
}
body {
  position: relative;
}
.body-corner-img {
  width: 25%;
  max-width: 300px;
  height: auto;
  z-index: 20;
  pointer-events: none;
}
.body-left-bottom {
  position: absolute;
  left: 10px;
  bottom: 0;
}
.body-right-bottom {
  position: absolute;
  right: 10px;
  bottom: 0;
}
.body-left-top {
  position: absolute;
  left: 10px;
  top: 0;
}
.body-right-top {
  position: absolute;
  right: 10px;
  top: 0;
}
/* Achtergrondafbeelding voor header en home */
#background-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url('achtergrond.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
section {
  margin: 25px 0 25px 0;
}
/* Pagina container voor centreren */
.container {
  display: flex;
  text-align: center;
  vertical-align: middle;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
/* Logo stijl */
.logo {
  display: block;
  margin: 80px auto 0px auto;
  text-align: center;
  width: 90%;
  min-width: 100px;
  max-width: 800px;
  height: auto;
}
* {
  text-align: center;
  color: white;
}

#tickets {
  background: rgba(0, 0, 0, 0);
}

#programma {
  background: #00000000;
}

#locatie {
  background: rgba(0, 0, 0, 0);
}

h1 {
  line-height: 1;
  font-size: 4rem;
  font-weight: 800;
  color: #faca30;
  text-transform: uppercase;
}

h2 {
  line-height: 1;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

p {
  max-width: 1000px;
  line-height: 1.7;
  font-size: 1.7rem;
  margin: 20px;
}

f {
  all: inherit;
  max-width: 1000px;
  line-height: 1.7;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}

/* De hoofdsectie die alles binnenboord houdt */
.slider-section {
  position: relative;  
  --slider-item-width: min(80vw, 720px);
  width: 80%;
  margin: 0 auto 50px auto;
}

/* Isolated block for slider and buttons */
.slider-block {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}

/* De scrollende container */
.slider-container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 5%; /* Ruimte tussen de afbeeldingen */
  overflow-x: auto;
  scroll-behavior: smooth; /* Zorgt voor een vloeiende beweging bij het klikken */
  width: 100%;
  max-width: 100%;
  padding-left: calc(50% - (var(--slider-item-width) / 2));
  padding-right: calc(50% - (var(--slider-item-width) / 2));
  box-sizing: border-box;

  /* CSS Scroll Snap */
  scroll-snap-type: x mandatory;

  /* Verberg de scrollbalk */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.slider-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* De individuele afbeelding-houders met een vaste grootte */
.slider-item {
  width: var(--slider-item-width);
  flex: 0 0 var(--slider-item-width);
  height: calc(var(--slider-item-width) + 90px);
  scroll-snap-align: center; /* Altijd centreren bij scrollen */
  display: grid;
  grid-template-rows: var(--slider-item-width) 90px;
  align-items: stretch;
  text-align: center;
  font-weight: 800;
  background-color: rgba(128, 128, 128, 0.25);
}

.slider-item img {
  display: block;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Subtitel onder afbeelding in slider-item */
.slider-item-subtitle {
  display: block;
  grid-row: 2;
  align-self: end;
  margin: 0 0 20px 0;
  padding-top: 0;
  line-height: 1;
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
}

/* Knoppen (staan nu over de padding heen) */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 15px 12px;
  cursor: pointer;
  font-size: 2rem;
  z-index: 20;
  pointer-events: auto;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.button {
  display: inline-block;
  padding: 1vh 2vh;
  border-radius: 1vh;
  background: #faca30;
  color: rgb(0, 0, 0);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: 800;
  transition: 0.3s;
}

.button:hover {
  background: #7f7f7f;
}

footer {
  background: rgba(0, 0, 0, 0);
  color: white;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1080px) {
  p {
    font-size: 1.2rem;
  }

  f {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .nav-btn {
    font-size: 1rem;
  }

  .button {
    font-size: 1.7rem;
  }

  .slider-section {
    width: 100%;
  }

  .slider-item {
    height: calc(var(--slider-item-width) + 60px);
    grid-template-rows: var(--slider-item-width) 60px;
  }

  .slider-item-subtitle {
    font-size: 1.7rem;
  }
}

body {
  font-family: "Londrina Solid", sans-serif;
  text-align: center;
  background: #000;
  margin: 0;
  padding: 0;
}