/* =========================================
   BASISSTIJLEN
   ========================================= */

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #0d0d0f;
  color: #e0e0e0;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  margin-bottom: 10px;
}

h2 {
  font-size: 32px;
  margin-top: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* =========================================
   KLEUREN
   ========================================= */

:root {
  --neon-blue: #00c8ff;
  --neon-purple: #a259ff;
  --neon-pink: #ff4fd8;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 12px var(--neon-blue);
}

.btn.primary:hover {
  box-shadow: 0 0 20px var(--neon-blue);
}

.btn.secondary {
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}

.btn.secondary:hover {
  background: var(--neon-blue);
  color: #000;
}

/* =========================================
   HERO
   ========================================= */

#hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  padding: 160px 0;
  text-align: center;
  position: relative;
}

#hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
}

#hero h1 {
  font-size: 80px;
  text-shadow: 0 0 20px var(--neon-purple);
}

#hero .hero-subtitle {
  font-size: 28px;
  color: var(--neon-blue);
  margin-bottom: 30px;
}

/* =========================================
   OVER MIJ
   ========================================= */

#over-mij .over-mij-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

#over-mij img {
  width: 350px;
  border-radius: 8px;
  box-shadow: 0 0 20px var(--neon-blue);
}

/* =========================================
   DIENSTEN
   ========================================= */

#diensten .diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.dienst {
  background: #111;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #222;
  transition: 0.3s;
}

.dienst:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px var(--neon-purple);
}

/* =========================================
   MEDIA
   ========================================= */

#media .media-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.mixtape-embed, .video-embed {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #222;
}

.foto-galerij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.foto-galerij img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 10px #000;
}

/* =========================================
   REVIEWS
   ========================================= */

#reviews .review {
  background: #111;
  padding: 25px;
  border-left: 4px solid var(--neon-pink);
  margin-bottom: 20px;
  border-radius: 6px;
}

/* =========================================
   CONTACT
   ========================================= */

#contact .contact-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: #111;
  border: 1px solid var(--neon-blue);
  color: #fff;
  border-radius: 4px;
  margin-bottom: 15px;
}

.contact-form button {
  width: 100%;
}

/* =========================================
   FOOTER
   ========================================= */

#footer {
  text-align: center;
  padding: 40px 0;
  background: #000;
  color: #777;
}

#footer .social-links a {
  color: var(--neon-blue);
  margin: 0 10px;
  text-decoration: none;
}

/* =========================================
   RESPONSIVE CSS
   ========================================= */

/* TABLET (max 992px) */
@media (max-width: 992px) {

  #hero h1 {
    font-size: 60px;
  }

  #hero .hero-subtitle {
    font-size: 22px;
  }

  #over-mij .over-mij-layout {
    flex-direction: column;
    text-align: center;
  }

  #over-mij img {
    width: 280px;
  }

  #media .media-layout {
    flex-direction: column;
  }

  .contact-layout {
    flex-direction: column;
  }
}

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

  body {
    font-size: 16px;
  }

  #hero {
    padding: 120px 0;
  }

  #hero h1 {
    font-size: 42px;
  }

  #hero .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  #diensten .diensten-grid {
    grid-template-columns: 1fr;
  }

  .foto-galerij {
    grid-template-columns: 1fr 1fr;
  }

  #reviews .review {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }
}

/* KLEINE MOBIELEN (max 480px) */
@media (max-width: 480px) {

  #hero {
    padding: 100px 0;
  }

  #hero h1 {
    font-size: 32px;
  }

  #hero .hero-subtitle {
    font-size: 16px;
  }

  #over-mij img {
    width: 220px;
  }

  .foto-galerij {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  #footer {
    font-size: 14px;
  }
}

