/* ============================
   DJ-SPACE - Opgeschoonde CSS
   Behoudt visueel hetzelfde uiterlijk
   ============================ */

/* ---------- Basis & fonts ---------- */


html, body {
  margin: 0;
  padding: 0;
  background-color: #000;   /* zoals in jouw eerste blok */
  color: #fff;
  font-family: 'Orbitron', sans-serif; /* Google font in head */
  box-sizing: border-box;
}

/* Font-face: zorg dat je .woff2/.woff/.ttf in fonts/ zet */
@font-face {
  font-family: 'Good Times';
  src: url('fonts/good-times.woff2') format('woff2'),
       url('fonts/good-times.woff') format('woff'),
       url('fonts/good-times.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Headings gebruik Good Times */
h1, h2, h3 {
  font-family: 'Good Times', sans-serif;
}

/* ---------- Intro scherm (optioneel) ---------- */
.intro-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 1s ease, visibility 1s ease;
}

.intro-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.help {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 2rem 0;
}

.help img {
  max-width: 80%;
  height: auto;
  margin-bottom: 1.5rem;
}

.book-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-family: 'Good Times', sans-serif;
  color: #fff;
  background: linear-gradient(90deg, #00f0ff, #0090cc);
  border: 2px solid #00f0ff;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
  text-decoration: none;
}

.book-btn:hover {
  background: linear-gradient(90deg, #0090cc, #00f0ff);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
  transform: scale(1.05);
}

.intro-image {
  max-width: 60%;
  height: auto;
  filter: drop-shadow(0 0 25px #00f0ff);
}

/* ---------- Header / Nav ---------- */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  font-family: 'Good Times', sans-serif;
}

/* Nav container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 10;
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  z-index: 10;
}

/* Mobile menu state */
nav ul.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  background-color: #111;
  z-index: 20;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Good Times', sans-serif;
}

nav a:hover {
  color: #00f0ff;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  position: relative;
  z-index: 30;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 800px; /* behouden zoals in jouw code */
  background: url('img/LOGO.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  text-align: center;
  color: white;
  margin-top: auto;
  position: relative;
  z-index: 2;
  padding: 70px;
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content h2 {
  font-size: 1.5rem;
  color: #00f0ff;
}

/* ---------- Algemene secties ---------- */
section {
  padding: 4rem 2rem;
  text-align: center;
}

/* About tekst */
.about p {
  max-width: 700px;
  margin: 1.8rem auto;
  line-height: 1.8;
  font-family: 'Good Times', sans-serif;
  font-size: 12pt;
}

/* Social icons */
.socials .icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.socials img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s, filter 0.3s;
}

.socials img:hover {
  transform: scale(1.2);
}

/* ---------- Tour / events ---------- */
.tour {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Good Times', sans-serif;
}

.event-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.event-date {
  color: #00f0ff;
  font-weight: bold;
}

.event-name {
  text-align: center;
  color: #00f0ff;
}

.event-slot {
  text-align: center;
  font-style: italic;
  color: #00f0ff;
}

.event-place {
  text-align: right;
  color: #00f0ff;
}


/* ---------- References ---------- */
.references {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
  text-align: left;
}

.references li {
  margin: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.references li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #00f0ff;
  font-size: 1.1rem;
}

/* ---------- Photo collage (samengevoegd) ---------- */
.photo-collage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  justify-items: center;
  margin-top: 2rem;
}

.photo-collage img {
  width: 100%;
  height: auto;
  max-width: 200px;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Rotaties en variatie behouden */
.photo-collage img:nth-child(odd) {
  transform: rotate(-2deg);
}

.photo-collage img:nth-child(even) {
  transform: rotate(2deg);
}

.photo-collage img:nth-child(3n) {
  grid-row: span 2;
}

/* Hover: terug naar recht en schaal */
.photo-collage img:hover {
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255,255,255,0.2);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 40px;
  line-height: 1;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.lightbox-close:hover {
  color: #f33;
}

/* ---------- About background & overlay ---------- */
/* Let op: gebruik percent-encoded bestandsnamen voor spaties/accents */
.about {
  position: relative;
  background: url("img/dj%20space.jpg") no-repeat center center/cover;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

/* overlay voor leesbaarheid */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* tekst boven overlay */
.about h2,
.about p,
.references,
.photo-collage {
  position: relative;
  z-index: 2;
}

/* ---------- Contact sectie ---------- */
#contact {
  position: relative;
  min-height: 100vh;
  background: url("img/dj%20space%20car%C3%A9.jpg") no-repeat center center/cover;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

#contact h1 {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

#contact .contact {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
}

#contact label {
  text-align: left;
  font-weight: bold;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

#contact button {
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  background: #ff4d6d;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button:hover {
  background: #e63950;
}

/* ---------- Music sectie ---------- */
#music {
  position: relative;
  min-height: 60vh;
  background: url("img/music-bg.jpg") no-repeat center center/cover;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

#music::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

#music h1,
#music p,
#music .music-embed {
  position: relative;
  z-index: 2;
}

#music h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.music-embed {
  max-width: 800px;
  margin: 1rem auto;
}

/* ---------- Contact card / form general ---------- */
.contact {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #111;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  color: white;
}

.contact label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.contact input,
.contact textarea,
.contact button {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}

.contact button {
  background-color: #00f0ff;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact button:hover {
  background-color: #0090cc;
}

/* ---------- Footer ---------- */
footer {
  background-color: #111;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

h1, h2, h3, h4, h5 {
  font-size: 32px; /* kies hier de grootte die je wil */
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 200px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  /* ✅ EVENTS mobiel layout */
  .event-row {
    grid-template-columns: 1fr; /* alles onder elkaar */
    text-align: center;
    padding: 15px 0;
  }

  .event-date,
  .event-name,
  .event-slot,
  .event-place {
    text-align: center;
    margin: 4px 0;
  }
}
