@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cormorant+Garamond:wght@400;700&display=swap');

/* Basisinstellingen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cormorant Garamond', serif;
  color: #f0f0f0;
  background-color: #0D1014;
  line-height: 1.6;
}

/* Links */
a {
  color: #ccc;
  text-decoration: none;
}

a:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Header en navigatie */
header {
  background-color: #1c1c1c;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
  text-align: center;
}

header h1 {
  font-size: 28px;
  font-family: 'Cinzel Decorative', serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav a {
  font-size: 16px;
  color: #bbb;
  font-weight: bold;
}

nav a:hover {
  color: #f39c12;
  text-shadow: 0 0 10px #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #03080D;
}

.hero h2 {
  font-size: 36px;
  color: #eee;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
}

/* Knoppen */
.button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.button:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 10px #fff;
}

.green-button {
  background-color: #1a4d1a !important;
  border-color: #2e7d32 !important;
  color: #d0ffd0 !important;
}

.green-button:hover {
  background-color: #2e7d32 !important;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
  transform: translateY(-2px);
}

/* Bezochte landen-knoppen */
.button-grid a.visited {
  background-color: #b2f2bb;
  color: #0D1014;
  border: 1px solid #98e0a6;
  text-shadow: none;
  box-shadow: none;
  transform: none;
  pointer-events: auto;
}

.button-grid a.visited:hover {
  background-color: #b2f2bb;
  color: #0D1014;
}

/* Foto-grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

.photo-thumb img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.photo-thumb img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #f39c12;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #1c1c1c;
  color: #999;
}
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  gap: 20px;
}

.logo-img {
  width: 240px; /* iets groter */
  height: auto;
}


.thema-title {
  text-align: center;
  margin-top: 60px;
  font-size: 32px;
  color: #f0f0f0;
}

/* Slider */
.slider-container {
  overflow: hidden;
  width: 100%;
  margin: 40px auto;
}

.slide-track {
  display: flex;
  gap: 10px;
  animation: scroll 30s linear infinite;
  padding: 10px;
}

.slide img {
  height: 300px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.lightbox.active {
  display: flex;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #f39c12;
  cursor: pointer;
}
.top-left-logo {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1100;
}

.top-left-logo img {
  width: 60px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.top-left-logo img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  nav a {
    font-size: 18px;
    padding: 8px 0;
  }

  header {
    padding: 1rem;
  }
}@media (max-width: 768px) {
  .top-left-logo {
    position: static;
    margin-bottom: 10px;
  }

  .top-left-logo img {
    width: 80px;
  }
.top-left-logo {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1100;
}

.top-left-logo img {
  width: 60px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.top-left-logo img:hover {
  opacity: 1;
}
/* Algemene reset en basisstijl */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
}

header {
  background-color: #111;
  padding: 10px 0;
  text-align: center;
}

.container h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* Top-left logo */
.top-left-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
}

.top-left-logo img {
  width: 80px;
  height: auto;
}

/* Hero section met dynamische achtergrond */
.hero {
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain; /* ❗ Belangrijk: maakt de afbeelding kleiner */
  transition: background-image 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Verkleind logo in hero */
.small-logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* Button stijl */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffffcc;
  color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #ffffff;
}

/* Logo-section styling */
.logo-section {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

/* Titel boven fotocarrousel */
.thema-title {
  text-align: center;
  font-size: 2em;
  margin: 40px 0 20px;
  color: #222;
}

/* Slider-stijlen */
.slider-container {
  overflow: hidden;
  width: 100%;
  padding: 20px;
  background-color: #111;
}

.slide-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 300px;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
}

.background-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-wrapper img {
  width: 800px; /* Pas aan naar wens */
  height: auto;
  opacity: 0.4; /* Optioneel voor doorkijk */
  transition: opacity 1s ease-in-out;
}
#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

#lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: opacity 0.5s ease;
}

#lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.2s ease;
}
#lightbox .close:hover {
  color: #ffaaaa;
}

#lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
  user-select: none;
  padding: 10px;
  transition: color 0.2s ease;
}
#lightbox .arrow:hover {
  color: #ffdddd;
}
#lightbox .arrow.left {
  left: 30px;
}
#lightbox .arrow.right {
  right: 30px;
}









