/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align:center;
}

body {
  font-family: 'Inter', sans-serif;
  background: #111;
  color: white;
  line-height: 1.6;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17,17,17,0.9);
  z-index: 1000;
}

.logo {
  font-weight: 600;
  letter-spacing: 3px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white;
  opacity: 0.6;
  transition: 0.3s;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* vult de hele sectie netjes */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* donkere overlay voor contrast */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  text-transform: uppercase;
  text-align: center;
  
  /* Gradient kleur voor die luxe vibe */
  background: linear-gradient(135deg, #FFD700, #FFA500, #FF69B4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Luxe glow / subtle shadow */
  text-shadow:
     0 0 10px rgba(255, 215, 0, 0.6),
     0 0 20px rgba(255, 140, 0, 0.4),
     0 0 30px rgba(255, 105, 180, 0.3);

  /* Smooth animatie voor extra klasse */
  animation: textGlow 3s ease-in-out infinite alternate;
}

/* Animatie voor subtle glow */
@keyframes textGlow {
  0% {
    text-shadow:
      0 0 10px rgba(255, 215, 0, 0.6),
      0 0 20px rgba(255, 140, 0, 0.4),
      0 0 30px rgba(255, 105, 180, 0.3);
  }
  50% {
    text-shadow:
      0 0 15px rgba(255, 215, 0, 0.8),
      0 0 25px rgba(255, 140, 0, 0.5),
      0 0 35px rgba(255, 105, 180, 0.4);
  }
  100% {
    text-shadow:
      0 0 10px rgba(255, 215, 0, 0.6),
      0 0 20px rgba(255, 140, 0, 0.4),
      0 0 30px rgba(255, 105, 180, 0.3);
  }
}



/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}


.gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  cursor: pointer;
}

.landscape {
  grid-column: span 2;   /* neemt 2 kolommen */
  aspect-ratio: 16 / 9;
}


.gallery img:hover {
  transform: scale(1.03);
  filter: brightness(1);
}


/* TEXT SECTIONS */
.about, .contact {
  max-width: 700px;
  margin: 120px auto;
  text-align: center;
}

.about h2, .contact h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  opacity: 0.4;
}

/* hover effect */
.gallery img {
  cursor: pointer;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox.show {
  display: flex;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 20px;
}

.prev { left: 20px; }
.next { right: 20px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* SCROLL ANIMATIES */

/* Scroll reveal animaties */

.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: 0.9s cubic-bezier(.2,.65,.3,1);
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* extra: tekst smooth inzoomen */
.zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: 0.8s ease;
}

.zoom.show {
  opacity: 1;
  transform: scale(1);
}


.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* info knop zakelijk en verplaatst naar onder rechts */
/* info knop fade animatie */
.info-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  z-index: 2100;
  padding: 10px 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-weight: 600;
  opacity: 0;              /* start onzichtbaar */
  transform: scale(0.8);    /* start klein */
  transition: all 0.4s ease;
}

.info-btn.show {
  opacity: 1;
  transform: scale(1);
}

.info-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.1);
}



/* close knop altijd boven alles */
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
  z-index: 2200; /* hoger dan info overlay */
}

/* info overlay blijft onder close */
.info-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  padding: 20px;
  border-radius: 8px;
  display: none;
  max-width: 80%;
  text-align: center;
  z-index: 2100; /* iets lager dan close */
  color: white;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* TITLES GALLERY & GRAPHIC DESIGN MET HOVER EFFECT */
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin: 80px 0 40px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #ff7e5f, #feb47b); /* subtiel gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
  cursor: default;
}


/* INFO OVERLAY TEKST */
.info-overlay p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

/* Graphic Design paragrafen */
section + p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 20px auto 60px auto; /* ruimte onder sectie */
}

/* kleine tweak gallery images spacing */
.gallery {
  margin-bottom: 60px;
}

.matchday-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
}

/* Elke foto vult z’n div netjes */
.md-photo {
  overflow: hidden;
  border-radius: 6px;
}

.md-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.md-photo img:hover {
  transform: scale(1.03);
}

/* Landscape foto neemt 2 kolommen op grote schermen */
.md-photo.landscape {
  grid-column: span 2;
  height: 250px; /* vaste hoogte voor consistency */
}

.md-photo.portrait {
  height: 400px;
}

.md-photo.square {
  height: 250px;
}

/* Responsive: alles 1 kolom op mobiel */
@media (max-width: 768px) {
  .matchday-gallery {
    grid-template-columns: 1fr;
  }

  .md-photo.landscape,
  .md-photo.portrait,
  .md-photo.square {
    height: 250px;
  }
}

.photo::after,
.md-photo::after {
  content: "© Xem Visuals";
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none; /* klikbaar niet blokken */
}

.all-videos {
  max-width: 800px;
  margin: 80px auto;
  text-align: center;
}

.all-videos h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.all-videos p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.all-videos ul {
  list-style: none;
  padding: 0;
}

.all-videos li {
  margin: 10px 0;
}

.all-videos a {
  color: #ff7e5f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.all-videos a:hover {
  color: #feb47b;
}
