.centre_responsive{
    display: block;
    margin-left:auto;
    margin-right:auto;
    width: 10%;
    height: auto;
}

.navbar {
  background: #66811D;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-menu-left,
.navbar-menu-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.navbar-menu-right {
  justify-content: flex-end;
}

.navbar-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-menu li {
  margin: 0 15px;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 18px;
  transition: color 0.2s;
}

.navbar-menu a:hover {
  color: #ffd700;
}

.navbar-menu-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu-center li {
  flex: 1 1 0;
  text-align: center;
}

.navbar-menu-center a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 18px;
  transition: color 0.2s;
  display: inline-block;
  padding: 10px 0;
}

.navbar-menu-center a:hover {
  color: #ffd700;
}

/* Breakout logo styling */
.navbar-logo-breakout {
  position: sticky;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 20px;
  border: 4px solid #fff;
}

.navbar-logo-breakout img {
  height: 84px;
  width: 84px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

body {
  background-image: url('images/algemeen/achtergrond.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  font-family: 'Bungee', cursive;
  color: #000;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('images/algemeen/achtergrond.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  filter: blur(2px); /* Adjust blur strength as needed */
  opacity: 0.99
}

.main-content {
  margin-top: 50px;
  font-size: 20px;
}

.main-content h1 {
  font-size: 32px;
}

.page-title-white {
  color: white;
}

.main-content p {
  font-size: 20px;
}

.foto-button {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.2s;
}
.foto-button:hover {
  background: #ffd700;
  color: #e63946;
}

/* Slideshow container */
.slideshow-container {
  width: 90vw;
  max-width: 900px;
  height: 70vh;          /* Set height relative to viewport */
  max-height: 80vh;      /* Prevent exceeding the screen */
  position: relative;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;      /* Hide overflow */
}

.slideshow-container img {
  width: 100%;
  height: 100%;
  max-height: 60vh;      /* Prevent image from exceeding container */
  object-fit: contain;     /* Crop to fill container */
  display: block;
  border-radius: 16px;
  margin-top: 120px; /* Adjust margin to account for navbar */
}
  
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: fixed;           /* Fixed position relative to viewport */
  top: 80px;                 /* Distance from top */
  left: 20px;                /* Distance from left */
  width: auto;
  padding: 23px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8);
  z-index: 2000;             /* Ensure on top */
}

/* Position the "next button" to the right of "prev" */
.next {
  left: 80px;                /* Place next button to the right of prev */
  border-radius: 3px 0 0 3px;
}  

.day-separator {
  margin: 50px 0;
  border: none;
  border-top: 2px solid #e63946;
  width: 80%;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .navbar {
    height: 80px;
    padding: 0 10px;
  }
  .navbar-menu-center a {
    font-size: 44px;
    padding: 20px 0;
  }
  .navbar-logo-breakout {
    width: 100vw;
    height: 200px;
    margin: 0 10px;
  }
  .navbar-logo-breakout img {
    height: 200x;
    width: 200px;
  }
}
