* {
  box-sizing: border-box;
}

:root {
  --bg: #09090b;
  --bg-soft: #111116;
  --card: #17171d;
  --text: #f5f5f7;
  --muted: #b7b7c2;
  --line: rgba(255,255,255,.10);
  --accent: #c6ff00;
  --accent-dark: #a6d800;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(8,8,11,.82);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.5px;
}

.logo-sub {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--accent);
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  color: #dedee5;
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  border: 1px solid rgba(198,255,0,.6);
  padding: 10px 16px;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 26px;
}

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  background:
    radial-gradient(circle at 82% 28%, rgba(198,255,0,.18), transparent 24%),
    radial-gradient(circle at 70% 60%, rgba(85,70,255,.13), transparent 28%),
    linear-gradient(120deg, #09090b 0%, #0d0d12 55%, #15151b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -170px;
  top: 80px;
  border: 1px solid rgba(198,255,0,.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(198,255,0,.025),
    0 0 0 160px rgba(198,255,0,.018);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 70px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 108px);
  line-height: .91;
  letter-spacing: -5px;
  margin: 0 0 28px;
  max-width: 950px;
  font-weight: 900;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0d;
}

.btn-primary:hover {
  background: #d3ff3a;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.hero-badges div {
  padding: 22px 30px 0 0;
}

.hero-badges strong,
.hero-badges span {
  display: block;
}

.hero-badges strong {
  font-size: 14px;
}

.hero-badges span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 105px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: start;
}

h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 0;
}

.intro {
  background: #0e0e12;
}

.intro-copy {
  font-size: 17px;
  color: var(--muted);
}

.intro-copy p:first-child {
  margin-top: 2px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.services {
  background: var(--bg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 390px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.card-number {
  font-size: 11px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 2px;
}

.card h3 {
  font-size: 28px;
  margin: 50px 0 14px;
  line-height: 1.1;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}

.feature {
  background: #101014;
}

.feature-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.photo-placeholder {
  min-height: 580px;
  border-radius: 16px;
  border: 1px solid rgba(198,255,0,.22);
  background:
    radial-gradient(circle at 40% 30%, rgba(198,255,0,.16), transparent 20%),
    linear-gradient(145deg, #1e1e26, #0b0b0e);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.38);
  font-weight: 800;
  letter-spacing: 3px;
}

.steps {
  margin-top: 46px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198,255,0,.5);
  color: var(--accent);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-section {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(198,255,0,.08), transparent 36%),
    #08080a;
}

blockquote {
  margin: 25px auto 20px;
  max-width: 980px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -2px;
}

.quote-name {
  color: var(--accent);
  font-weight: 800;
}

.small-note {
  font-size: 11px;
  color: #767682;
}

.area {
  background: #111116;
}

.contact {
  background: #09090b;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.contact-grid > div > p {
  color: var(--muted);
  max-width: 560px;
  font-size: 16px;
}

.contact-points {
  margin-top: 38px;
  display: grid;
  gap: 16px;
}

.contact-points div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 34px;
  border-radius: 14px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0e0e12;
  color: white;
  border-radius: 7px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(198,255,0,.6);
}

.full {
  width: 100%;
}

.form-note {
  margin: 13px 0 0;
  color: #7f7f8d;
  font-size: 10px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  background: #060608;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.footer-sub {
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 3px;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: var(--muted);
}

.copyright {
  justify-self: end;
  font-size: 11px;
  color: #777783;
}

@media (max-width: 860px) {
  .menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 22px 20px 28px;
    background: #0b0b0f;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-badges,
  .cards,
  .split,
  .feature-grid,
  .contact-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 18px;
  }

  .cards {
    gap: 14px;
  }

  .card {
    min-height: 300px;
  }

  .feature-grid,
  .contact-grid,
  .split {
    gap: 45px;
  }

  .photo-placeholder {
    min-height: 440px;
  }

  .footer-links,
  .copyright {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  blockquote {
    font-size: 34px;
  }
}


/* DJ Zorro eigen logo en feestfoto */
.site-logo {
  width: 92px;
  height: 68px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 105px;
  height: auto;
  object-fit: contain;
  display: block;
}

.photo-placeholder.photo-real {
  padding: 0;
  overflow: hidden;
  background: #0b0b0e;
}

.photo-placeholder.photo-real img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 860px) {
  .site-logo {
    width: 82px;
    height: 60px;
  }

  .photo-placeholder.photo-real img {
    min-height: 440px;
  }
}


/* =========================
   FOTO-GALERIJ
   ========================= */

.active-link {
  color: var(--accent) !important;
}

.gallery-hero {
  padding: 170px 0 70px;
  background:
    radial-gradient(circle at 80% 30%, rgba(198,255,0,.12), transparent 25%),
    linear-gradient(120deg, #09090b, #131318);
  border-bottom: 1px solid var(--line);
}

.gallery-hero h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 110px);
  line-height: .95;
  letter-spacing: -5px;
}

.gallery-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
}

.gallery-section {
  padding: 65px 0 110px;
  min-height: 55vh;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-item {
  appearance: none;
  border: 0;
  padding: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  position: relative;
}

.photo-item::after {
  content: "Bekijk";
  position: absolute;
  inset: auto 12px 12px auto;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(0,0,0,.70);
  color: white;
  opacity: 0;
  transform: translateY(4px);
  transition: .2s ease;
}

.photo-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s ease, opacity .28s ease;
}

.photo-item:hover img {
  transform: scale(1.035);
  opacity: .9;
}

.gallery-empty {
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 14px;
  text-align: center;
  padding: 60px 25px;
  color: var(--muted);
}

.gallery-empty h2 {
  font-size: 30px;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 15px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  background: rgba(0,0,0,.93);
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.55);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.08);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close {
  right: 25px;
  top: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 75px;
  border-radius: 10px;
  font-size: 48px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 860px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox {
    padding: 30px 55px;
  }
}

@media (max-width: 560px) {
  .gallery-hero {
    padding-top: 135px;
  }

  .gallery-hero h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lightbox {
    padding: 60px 12px 30px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 43px;
    height: 58px;
    font-size: 38px;
  }

  .lightbox-prev {
    left: 7px;
  }

  .lightbox-next {
    right: 7px;
  }
}


/* Video's in de galerij */
.video-thumb {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.35);
  color: white;
  font-size: 25px;
  padding-left: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 88vh;
}

.lightbox-media {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.55);
}

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

.reviews-hero {
  padding: 170px 0 70px;
  background:
    radial-gradient(circle at 80% 30%, rgba(198,255,0,.12), transparent 25%),
    linear-gradient(120deg, #09090b, #131318);
  border-bottom: 1px solid var(--line);
}

.reviews-hero h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 100px);
  line-height: .95;
  letter-spacing: -5px;
}

.reviews-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
}

.reviews-page {
  padding: 70px 0 110px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 55px;
  align-items: start;
}

.review-list {
  display: grid;
  gap: 18px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.review-stars {
  color: var(--accent);
  letter-spacing: 4px;
  font-size: 20px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
  color: #eeeeF2;
  white-space: pre-line;
}

.review-name {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.review-date {
  color: #777783;
  font-size: 11px;
  margin-left: 8px;
}

.review-form-card {
  position: sticky;
  top: 110px;
  background: var(--card);
  border: 1px solid rgba(198,255,0,.25);
  border-radius: 14px;
  padding: 30px;
}

.review-form-card h2 {
  font-size: 32px;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.review-form-card > p {
  color: var(--muted);
  font-size: 14px;
}

.review-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin: 16px 0;
}

.review-form select {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0e0e12;
  color: white;
  border-radius: 7px;
  font: inherit;
}

.review-message {
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 22px;
  font-size: 14px;
}

.review-message.success {
  background: rgba(198,255,0,.10);
  border: 1px solid rgba(198,255,0,.35);
  color: #eaffaa;
}

.review-message.error {
  background: rgba(255,80,80,.10);
  border: 1px solid rgba(255,80,80,.30);
  color: #ffc7c7;
}

.review-empty {
  padding: 35px;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 14px;
  color: var(--muted);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.admin-wrap {
  padding: 145px 0 90px;
  min-height: 100vh;
}

.admin-panel {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.admin-review {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.admin-review:first-child {
  border-top: 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-danger {
  background: #b72b2b;
  color: white;
}

.btn-secondary-small {
  background: rgba(255,255,255,.08);
  color: white;
  border: 1px solid var(--line);
}

.admin-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.admin-count {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 860px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-form-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .reviews-hero {
    padding-top: 135px;
  }

  .reviews-hero h1 {
    font-size: 56px;
    letter-spacing: -3px;
  }

  .review-card,
  .review-form-card,
  .admin-panel {
    padding: 22px;
  }
}
