/* ===============================
   RESET / BASIS
================================ */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #e0e0e0;

  background:
    linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)),
    url('../media/lespaul-bg.jpg') center / cover fixed no-repeat;
}

/* ===============================
   BANNER / HEADER
================================ */
.banner {
   width: 100%;
   height: auto;
   min-height: 220px;
   max-height: 860px;
   aspect-ratio: 16 / 9;
   
   display: flex;
   align-items: center;
   justify-content: center;
   
   ackground-color: #000;
   background-image: url('../media/header.jpg');
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   position: relative;
}

/* LOGO */
.logo {
  position: absolute;
  top: 20px;
  right: 20px;

  width: clamp(120px, 18vw, 200px);
  padding: 12px;

  background: rgba(0,0,0,0.65);
  border-radius: 10px;
}

/* ===============================
   LANGUAGE SWITCH (LEFT)
================================ */
.lang-switch {
  position: fixed;
  top: 25px;
  left: 30px;        /* ⬅ links uitgelijnd */
  z-index: 1002;
}

/* Button */
.lang-toggle {
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown */
.lang-menu {
  position: absolute;
  top: 120%;
  left: 0;           /* ⬅ dropdown uitlijnen met links */
  min-width: 100%;
  background: rgba(0,0,0,0.85);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.3s ease;
}

/* Open state */
.lang-switch.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Items */
.lang-menu a {
  display: block;
  padding: 10px 14px;
  color: #ccc;
  text-decoration: none;
  text-align: left;   /* ⬅ tekst links */
  transition: background 0.3s, color 0.3s;
}

.lang-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .lang-switch {
    top: 16px;
    left: 16px;
  }
}

/* open state */
.lang-switch.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===============================
   CAROUSEL
================================ */
.carousel {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 60px auto;

  background: #000;
  border-radius: 14px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel img {
  width: 100%;
  height: 100%;

  object-fit: contain;       /* GEEN crop */
  object-position: center;

  display: none;
}

.carousel img.active {
  display: block;
}

/* ===============================
   AGENDA
================================ */
.agenda {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;

  background: rgba(0,0,0,0.65);
  border-radius: 14px;
  text-align: center;
}

.seo-text {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;

  background: rgba(0,0,0,0.65);
  border-radius: 14px;
  text-align: center;
}

.agenda h2,
.photos h2 {
  margin-top: 0;
  text-align: center;
  letter-spacing: 2px;
}

.agenda ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agenda li {
  padding: 15px 0;
  border-bottom: 1px solid #444;
}

.agenda li:last-child {
  border-bottom: none;
}

/* ===============================
   VIDEO
================================ */
.video {
  width: 100%;
  max-width: 900px;
  margin: 60px auto;
}

.video video {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

/* ===============================
   FOOTER
================================ */
footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}

footer h3 {
  margin-top: 0;
  letter-spacing: 2px;
}

footer p {
  margin: 8px 0;
}

.socials {
  margin: 20px 0;
}

.socials a {
  color: #aaa;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #fff;
}

footer .copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .logo {
    top: 12px;
    right: 12px;
    padding: 8px;
  }

  .carousel {
    aspect-ratio: 4 / 3;
    margin: 40px 15px;
  }

  .agenda,
  .video {
    margin: 40px 15px;
  }

  footer {
    padding: 30px 15px;
  }
}

/* ===============================
   3D PHOTO CAROUSEL
================================ */
.carousel-3d {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 60px auto;

  perspective: 1200px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;

  transform-style: preserve-3d;
  animation: spin 25s linear infinite;
}

.carousel-track img {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 280px;
  height: 180px;

  object-fit: contain;
  transform-style: preserve-3d;

  margin: -90px 0 0 -140px;

  background: #000;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* ===============================
   POSITIONERING FOTO'S IN CIRKEL
================================ */
.carousel-track img:nth-child(1) { transform: rotateY(0deg)   translateZ(400px); }
.carousel-track img:nth-child(2) { transform: rotateY(72deg)  translateZ(400px); }
.carousel-track img:nth-child(3) { transform: rotateY(144deg) translateZ(400px); }
.carousel-track img:nth-child(4) { transform: rotateY(216deg) translateZ(400px); }
.carousel-track img:nth-child(5) { transform: rotateY(288deg) translateZ(400px); }

/* ===============================
   ROTATIE ANIMATIE
================================ */
@keyframes spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* ===============================
   POSTER POPUP
================================ */
.poster-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.poster-modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* CONTENT */
.poster-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;

  animation: spinIn 0.9s ease forwards;
  transform-style: preserve-3d;
}

.poster-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* SLUITKNOP */
.poster-close {
  position: absolute;
  top: -16px;
  right: -16px;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: #000;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  border: none;
  cursor: pointer;

  box-shadow: 0 0 12px rgba(0,0,0,0.8);
}

/* ANIMATIE */
@keyframes spinIn {
  from {
    transform: rotateY(90deg) scale(0.8);
    opacity: 0;
  }
  to {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

.mail-link {
  text-decoration: none;   /* ❌ geen lijntje */
  color: #aaa;             /* ❌ niet blauw */
}

.mail-link:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

.ticket-link {
  color: #aaa;
  text-decoration: none;
  font-weight: bold;
}

.ticket-link:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}

img, video {
  user-select: none;
  -webkit-user-drag: none;
}

video::-internal-media-controls-download-button {
  display: none;
}

.protected {
  position: relative;
  display: inline-block;
}

/* ===============================
   SCROLL SPIN (ONE-SHOT)
================================ */
.scroll-spin {
  opacity: 0;
  transform: rotateY(90deg);
  transform-origin: center;
  will-change: transform, opacity;
}

/* Zodra zichtbaar */
.scroll-spin.animate {
  opacity: 1;
  animation: spinIn 0.9s ease forwards;
}

/* Animatie */
@keyframes spinIn {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  position: fixed;
  top: 25px;
  right: 30px;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: white;
  margin-bottom: 6px;
  transition: 0.3s;
}

/* Verbergen bij scroll */
.menu-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ===== OVERLAY MENU ===== */
.floating-menu {
  position: fixed;
  inset: 0;
  background: rgba(60, 60, 60, 0.75);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.floating-menu.show {
  opacity: 1;
  pointer-events: auto;
}

.floating-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.floating-menu li {
  margin: 20px 0;
}

.floating-menu a {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

.floating-menu a:hover {
  color: #c00;
}

.seo-text h2 {
  display: block;
  width: 100%;
  text-align: center;
}

.band-photo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.band-photo img {
  max-width: 700px;     /* niet te groot */
  width: 100%;
  border-radius: 10px;  /* past bij je design */
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .band-photo img {
    max-width: 90%;
  }
}

/* ===============================
   SEO HIDDEN (GOOGLE SAFE)
================================ */
.seo-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}