/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Federo&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Algemene stijlen */ :root {
  /* adjustable vars */
  --MTNBG: rgba(235, 255, 255, 1); /* Pale cyan / Soft aqua */
  --MTN1: rgba(17, 56, 72, 1); /* Dark teal / Deep blue-green */
  --MTN2: rgba(100, 160, 168, 1); /* Muted teal */
  --MTN3: rgba(187, 38, 34, 1); /* Deep red / Brick red */
  --MTN4: rgba(255, 255, 255, 1); /* Pure White */
  /* default settings */
  --wit: rgba(255, 255, 255, 1);
  --lichtgrijs: rgba(248, 249, 250, 1);
  --donkergrijs: rgba(29, 29, 27, 1);
  --bs-nav-link-font-size: 1.4rem;
  --default-spacing: 2rem;
  --small-spacing: 1rem;
  --heading-font1: "Raconteur", sans-serif;
  --heading-font2: "Federo", sans-serif;
  --heading-font3: 'yankregular';
  --p-font1: 'Montserrat', sans-serif;
  --menu-radius: 125px;
}
@font-face {
  font-family: 'Raconteur';
  font-style: normal;
  font-weight: normal;
  src: url('../fonts/RaconteurNF.woff') format('woff');
}
@font-face {
  font-family: 'broken_typeregular';
  src: url('/font/broken_type-webfont.woff2') format('woff2'), url('/font/broken_type-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'yankregular';
  src: url('/font/yank-webfont.woff2') format('woff2'), url('/font/yank-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  background-image: url('../images/background.jpg');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: start;
  height: 100vh;
}
/* ---------------------TEXT SIZES--------------------- */
/* Extra small devices (xs) - No media query needed since it's the default */
body, p {
  font-size: 100%;
  font-family: var(--p-font1);
}
.tussenheader-float h2 {
  font-family: var(--heading-font1);
  color: var(--wit);
  font-size: 1.5rem;
  /*text-shadow: 2px 2px 4px var(--donkergrijs);*/
}
/* Small devices (sm) - ≥576px */
@media (min-width: 576px) {
  body, p {
    font-size: 100%;
  }
}
/* Medium devices (md) - ≥768px */
@media (min-width: 768px) {
  body, p {
    font-size: 112%;
  }
  .tussenheader-float h2 {
    font-family: var(--heading-font1);
    color: var(--wit);
    font-size: 3rem;
    /*text-shadow: 2px 2px 4px var(--donkergrijs);*/
  }
}
/* Large devices (lg) - ≥992px */
@media (min-width: 992px) {
  body, p {
    font-size: 112%;
  }
  .tussenheader-float h2 {
    font-family: var(--heading-font1);
    color: var(--wit);
    font-size: 4rem;
    /*text-shadow: 2px 2px 4px var(--donkergrijs);*/
  }
}
h1 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 5px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font2);
}
a, a:visited {
  color: var(--MTN2); 
  text-decoration: none; /* Optional: Remove underline */
}

/* Link color when hovered */
a:hover, a:active, a:focus {
  color: var(--MTN3);
  text-decoration: underline; /* Optional: Add underline on hover */
}


lead, .lead {
  font-size: 125%;
  font-weight: 600;
}

/* ---------------NAV----------------- */
.menu-container {
  position: fixed;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center the container */
  z-index: 1000;
  width: 100%; /* Ensure the menu container spans the full width */
}

@media (min-width: 768px) {
  .menu-container {
    bottom: 60px;
  }
}

/* Button and menu item styles */
.menu-btn, .menu-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  transition: transform 0.4s ease, opacity 0.3s ease, background-color 0.3s ease;
  user-select: none;
  transform-origin: center; /* Ensure the scaling happens from the center */
}

.menu-btn:hover, .menu-item:hover, .menu-btn:focus, .menu-item:focus {
  background-color: var(--MTN1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

/* Menu button specific styling */
.menu-btn {
  position: relative;
  z-index: 10;
}

/* Menu item styles */
.menu-item {
  font-family: var(--heading-font2);
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(0px);
}

/* Transitions for menu items when menu is open */
.menu-container.open .menu-item:nth-child(2) {
  transform: translate(calc(-1 * var(--menu-radius)), 0);
  opacity: 1;
}
.menu-container.open .menu-item:nth-child(3) {
  transform: translate(calc(-0.707 * var(--menu-radius)), calc(-0.707 * var(--menu-radius)));
  opacity: 1;
}
.menu-container.open .menu-item:nth-child(4) {
  transform: translate(0px, calc(-1 * var(--menu-radius)));
  opacity: 1;
}
.menu-container.open .menu-item:nth-child(5) {
  transform: translate(calc(0.707 * var(--menu-radius)), calc(-0.707 * var(--menu-radius)));
  opacity: 1;
}
.menu-container.open .menu-item:nth-child(6) {
  transform: translate(var(--menu-radius), 0);
  opacity: 1;
}

/* Grow and shrink animation */
@keyframes growShrink {
  0% {
    transform: scale(1); /* Start at 100% size */
  }
  50% {
    transform: scale(1.25); /* Grow to 125% */
  }
  100% {
    transform: scale(1); /* Shrink back to 100% */
  }
}

.menu-btn.grow-shrink {
  animation: growShrink 1s ease-in-out 2; /* Apply the animation twice */
}

/* Transition for the menu sliding in/out */
.menu-container {
  transition: transform 0.3s ease-in-out;
  
}




/* ---------------Default col----------------- */
.intro-col, .locatie-col, .cast-col, .speellijst-col, .tickets-col, .faq-col, .voorwaarden-col, .logo-col {
  background-color: var(--wit);
  padding: var(--default-spacing);
}
.row-adjust {
  margin-left: 0px;
  margin-right: 0px;
}
/* ---------------HEADERS----------------- */
.header-1 {
  position: relative;
  z-index: 100;
}
.header1-img {
  z-index: 200
}
.icon-col {
  position: relative;
}
.tussenheader-col {
  position: relative;
}
.tussenheader-float {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
}
/* Social media icons */
.header-icons {
  position: absolute;
  top: var(--small-spacing); /* Add more spacing if needed */
  left: var(--small-spacing);
  display: flex;
  gap: 5px;
}

/* Icons should be slightly larger */
.header-icons i {
  font-size: .8rem; /* Adjust the icon size */
}

/* Scale entire anchor (instead of just the <i>) */
.header-icons a {
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out; /* Smooth effect */
}

.header-icons a:hover {
  transform: scale(1.3); /* Enlarges the link and icon */
}

/* Medium devices (md) - ≥768px */
@media (min-width: 768px) {
  .header-icons i {
    font-size: 1rem; /* Adjust the icon size */
  }
  .header-icons {
    top: var(--default-spacing); /* Add more spacing if needed */
    left: var(--default-spacing);
    gap: 10px;
  }
  .header-icons a {
    display: inline-flex; /* Ensures proper scaling */
  }
}

/* Make icons stack vertically on small screens */
@media (max-width: 767px) { /* Target screens smaller than 768px */
  .header-icons {
    flex-direction: column; /* Stack icons vertically */
    align-items: flex-start; /* Align icons to the left */
    gap: 8px; /* Increase spacing between icons */
  }
}
/* ---------------INTRO----------------- */
.intro-col {}
/* ---------------LOCATIE----------------- */
.locatie-col {}
.map-container {
  position: relative;
  width: 100%;
  padding-top: 50%; /* aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--MTN1);
  filter: grayscale(30%) sepia(30%);
}
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows interaction with the map */
  opacity: 1;
  border: 2px solid var(--MTN1);
}
/* ---------------CAST----------------- */
.cast-col {}
.cast-dl {
  display: flex;
  flex-direction: column; /* Stacks dt and dd */
  gap: 5px; /* Space between items */
}
/* Fixed width for dt */
.cast-dl dt {
  grid-column: 1;
  width: 150px; /* Ensures all dt have the same width */
  margin: 0;
  text-align: left;
}
/* Flexible width for dd */
.cast-dl dd {
  grid-column: 3;
  margin: 0;
  text-align: left;
  position: relative;
}
@media (min-width: 768px) {
  .cast-dl {
    display: grid;
    grid-template-columns: 200px 10px auto; /* dt is fixed, dd is flexible */
    row-gap: 10px;
    align-items: start;
  }
  .cast-dl dt {
    grid-column: 1;
    width: 200px; /* Ensures all dt have the same width */
    margin: 0;
    text-align: left;
  }
}
/* ---------------SPEELLIJST----------------- */
.speellijst-col {}
.speellijst-p {
  font-family: var(--heading-font2);
  font-size: 1.2rem;
}
.speellijst-datum {
  font-weight: 800;
}
.speellijst-tijd {}
.speellijst-soort {
  font-family: var(--p-font1);
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  vertical-align: top;
}
.speellijst-warning {
  color: var(--MTN3);
  font-weight: 700;
}
@media (min-width: 768px) {
  .speellijst-p {
    font-size: 1.5rem;
  }
  .speellijst-soort {
    font-size: 1rem;
  }
}
/* ---------------TICKETS----------------- */
.tickets-col {}

  .speellijst-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap; /* Allow wrapping */
   justify-content: left;
}

/* Mobile: Stack buttons vertically */
@media (max-width: 768px) {
    .speellijst-buttons {
        flex-direction: column;
        align-items: stretch; /* Make buttons full width */
		 
    }

    .btn {
        width: 100%; /* Full width for each button */
        text-align: center; /* Center text */
    }
}
  .btn {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .btn-kaarten {
    background-color: var(--MTN3); /* Diep rood */
    color: var(--wit);
  }

  .btn-diner {
    background-color: var(--MTN2); /* Muted teal */
    color: var(--wit);
  }

  .btn-rondleiding {
    background-color: var(--MTN1); /* Donker teal */
    color: var(--wit);
  }

  .btn:hover {
    opacity: 0.8;
	  background-color: var(--donkergrijs);
	  color: var(--wit);
  }

.btn:active, .btn:focus, .btn:visited {
	color: var(--wit);
}
/* ---------------NIEUWS----------------- */
/* Basisstijl voor nieuwsblok */
.nieuwsblok {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Nieuwsfoto met overlay filter */
.nieuwsfoto {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%; /* Verhouding 2:1 */
  overflow: hidden;
}

.nieuwsfoto img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/nieuwsfotofilter.png') center center no-repeat;
  background-size: cover;
  opacity: .8;
  z-index: 1;
  
  /* Apply blending effect similar to 'screen' in Photoshop */
  mix-blend-mode: multiply; /* Apply the screen blending effect */
}
/* Stijlen voor de nieuwsinhoud */
.nieuwscontent {
  padding: 1rem;
  display: block;
  max-height: 200px; /* Standaard hoogte, past aan bij klikken */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.nieuwscontent p, .nieuwscontent ul {
  margin-bottom: 0.5rem;
}

/* De 'Lees meer' knop */
.leesmeer {
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: 1rem; /* Voeg een beetje ruimte boven de knop toe */
}

/* Als de content open is, verhoog de max-height */
.nieuwscontent.open {
  max-height: 1500px;
}

/* ---------------FAQ----------------- */
.faq-col {}
.faq-dl {
  max-width: 800px;
  margin: var(--default-spacing) auto;
}
.faq-dl dt {
  font-weight: bold;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  cursor: pointer; /* Maakt het klikbaar */
  margin-top: 10px;
}
.faq-dl dt:hover {
  background: #e0e0e0;
}
.faq-dl dd {
  box-sizing: border-box;
  margin: 0;
  /* Keep horizontal padding constant */
  padding-left: var(--default-spacing);
  padding-right: var(--default-spacing);
  /* Start with no vertical padding */
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding-top 0.5s ease, padding-bottom 0.5s ease;
  background: var(--wit);
  border-left: 3px solid var(--MTN3);
}
.faq-dl dd.expanded {
  max-height: 1000px; /* ensure this is high enough */
  padding-top: var(--default-spacing);
  padding-bottom: var(--default-spacing);
}
/* ---------------ALGEMENE VOORWAARDEN----------------- */
.voorwaarden-col {}
/* ---------------SPONSOR LOGOS----------------- */
.logo-col {}
.logo-col img {
	max-height: 120px;width:auto;
}
.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center horizontally */
  align-items: flex-end; /* Align logos at the bottom */
  gap: 20px; /* Space between logos */
  padding: var(--default-spacing);
}
.logo-container img {
  flex: 1 1 100px; /* flex-grow: 1, flex-shrink: 1, base width: 100px */
  min-width: 120px;
	max-width:160px;
  height: auto; /* Maintain aspect ratio */
  object-fit: contain;
}
/* Info Blokken */
.info-box {
  background-color: #f8f9fa;
  padding: var(--default-spacing);
  min-height: 25vh; /* Ensures a minimum height */
  position: relative;
  border-radius: 8px;
  margin-top: var(--default-spacing);
  margin-bottom: var(--default-spacing);
}
/* Ensure images are the same size */
.fixed-size {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/* Hover effect */
.hover-effect {
  transition: transform 0.3s ease-in-out;
}
.hover-effect:hover {
  transform: scale(1.05);
}
/* Footer styling */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: var(--default-spacing);
}
/* Social media icons */
.footer-icons {
  display: flex;
  gap: 10px;
}
.footer-icons a {
  text-decoration: none;
  display: inline-flex; /* Ensures proper scaling */
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out; /* Smooth effect */
}
/* Icons should be slightly larger */
.footer-icons i {
  font-size: 1rem; /* Adjust the icon size */
}
/* Scale entire anchor (instead of just the <i>) */
.footer-icons a:hover {
  transform: scale(1.3); /* Enlarges the link and icon */
}
/* ------------------------Uitverkocht ------------------------------- */
.sticker-wrapper {
  position: relative;
  display: inline-block;
}

.uitverkocht {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  background-color:rgba(255,255,255,0.75) ;
  color: red;
  border: 2px solid red;
  border-radius: 8px;
  padding: 0px 12px;
  font-size: 0.5em;
  font-weight: bold;
  pointer-events: none;
  z-index: 1;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--veuraaltiedQuaternary);
    border-color: var(--veuraaltiedPrimary);
    opacity: var(--bs-btn-disabled-opacity);
}