/* Algemene opmaak */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header met logo en info */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  background-color: #ffffff;
  min-height: 150px;
}

.logo {
  width: 112px;
}

/* 3-kolommen layout */
.three-column-layout {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.left-column, .right-column {
  width: 240px;
}

.center-column {
  flex: 1;
  min-width: 300px;
}

.menu-tekstvak iframe {
  width: 100%;
  height: 500px;
  border: none;
}


.logo-blok {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-left: 0.5cm;
}

.header-info h1 {
  font-size: 120px;
  color: black;
  margin: 0;
}

.organisatie-blok {
  display: flex;
  flex-direction: column;
}

.organisatie-info {
  color: #ff9966;
  font-size: 12px;
  margin: 0;
}

.menu-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-left: 0.5cm;
}

.horizontal-menu {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.horizontal-menu button {
  background-color: #ff9966;
  border: none;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.horizontal-menu button:hover {
  background-color: #ff6600;
}

/* Countdown + tekstvak */
.main-content {
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.info-box {
  font-size: 13px;
  line-height: 1.4;
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  margin-top: 20px;
}
.info-box h4 {
  margin: 10px 0 5px;
  font-size: 14px;
  color: #ff6600;
}
.countdown-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 150px;
  max-width: 170px;
  flex: none;
  align-items: flex-start;
}

.countdown-box {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.countdown-title {
  font-size: 14px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 10px;
}

.countdown-timer {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.countdown-info {
  font-size: 12px;
  color: #666;
}

.menu-tekstvak {
  width: 1200px;
  height: 320px;
  overflow-y: hidden;
  padding: 0;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
}

/* Verticale carrousel binnen de rechterkolom */
.carousel-wrapper {
  height: 650px; /* of wat jij wilt */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-track {
   transition: transform 0.5s ease;
}

.carousel-track-wrapper.vertical {
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  flex: 1;
  width: 100%;
}

.carousel-track.vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.carousel-track.vertical img {
  max-width: 100%;
  max-height: 130px;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsieve aanpassing */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }

.carousel-multi-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

  .carousel-track img {
    width: 100%;
    max-width: 90vw;
    height: auto;
  }

  .carousel-button {
    margin: 10px;
  }

.carousel-button.up,
.carousel-button.down {
  background: #fff;
  border: 1px solid #ccc;
  padding: 4px 8px;
  margin: 5px 0;
  cursor: pointer;
  font-size: 1.2rem;
}

.carousel-track-wrapper.vertical {
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.carousel-track.vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.carousel-track.vertical img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

  .carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .extra-info {
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .carousel-wrapper {
    align-items: flex-start;
    padding-left: 10px;
  }
}

@media (max-width: 900px) {
  .three-column-layout {
    flex-direction: column;
  }

  .left-column,
  .right-column,
  .center-column {
    width: 100%;
  }
}