:root {
  --zwart: #0A0A0A;
  --rood: #CC0000;
  --blauw: #1A3A6B;
  --wit: #FFFFFF;
  --grijs: #888888;
  --rand: rgba(255,255,255,0.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--zwart);
  color: var(--wit);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(10,10,10,0.95);
  border-bottom: 0.5px solid var(--rand);
  backdrop-filter: blur(8px);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.12em; }
.nav-logo span { color: var(--rood); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.actief { color: var(--wit); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--wit); }

.hero-eyebrow, .hero-title, .hero-bottom, .hero-jaar, .hero-cta { position: relative; z-index: 1; }
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 60px;
  border-bottom: 0.5px solid var(--rand);
  background-image: url('../pand.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.88) 70%);
  z-index: 0;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; color: var(--rood); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::after { content: ''; display: block; width: 40px; height: 0.5px; background: var(--rood); }
.hero-title { position: relative; z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92; letter-spacing: 0.01em; margin-bottom: 32px;
}
.hero-title span { color: var(--rood); }
.hero-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.hero-jaar { font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,0.3); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12px;
  letter-spacing: 0.1em; border: 0.5px solid rgba(255,255,255,0.3); padding: 12px 24px; transition: border-color 0.2s, color 0.2s;
}
.hero-cta:hover { border-color: var(--rood); color: var(--rood); }

.intro { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--rand); }
.intro-left { padding: 64px 40px; border-right: 0.5px solid var(--rand); }
.intro-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3vw, 42px); line-height: 1.1; color: var(--wit); }
.intro-right { padding: 64px 40px; }
.intro-body { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 20px; }
.intro-hist { font-size: 13px; color: rgba(100,140,200,0.85); border-left: 2px solid var(--blauw); padding-left: 16px; line-height: 1.8; }

/* Featured / "In de picture" */
.featured { padding: 64px 40px; border-bottom: 0.5px solid var(--rand); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--rand); margin-top: 40px; }
.featured-card { background: var(--zwart); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.featured-card-img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: rgba(255,255,255,0.04); }
.featured-card-titel { font-family: 'Bebas Neue', sans-serif; font-size: 26px; line-height: 1.05; }
.featured-card-tekst { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.7; flex: 1; }
.featured-card-link { font-size: 11px; letter-spacing: 0.1em; color: var(--rood); }
.leeg-bericht { font-size: 14px; color: rgba(255,255,255,0.35); padding: 24px 0; border-top: 0.5px solid var(--rand); }

.prog { padding: 64px 40px; border-bottom: 0.5px solid var(--rand); }
.section-label { font-size: 10px; letter-spacing: 0.22em; color: var(--rood); margin-bottom: 8px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 52px); margin-bottom: 40px; line-height: 1; }
.section-titlerow { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.section-titlerow .section-title { margin-bottom: 0; }
.section-more { font-size: 11px; letter-spacing: 0.1em; color: var(--rood); white-space: nowrap; }

.dag-tabs { display: flex; overflow-x: auto; border: 0.5px solid var(--rand); scrollbar-width: none; }
.dag-tabs::-webkit-scrollbar { display: none; }
.dag-tab {
  padding: 10px 20px; font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  cursor: pointer; white-space: nowrap; border-right: 0.5px solid var(--rand);
  transition: all 0.2s; background: transparent; border-top: none; border-bottom: none; border-left: none;
  font-family: 'DM Sans', sans-serif;
}
.dag-tab:last-child { border-right: none; }
.dag-tab.actief { color: var(--rood); border-bottom: 2px solid var(--rood); background: rgba(204,0,0,0.05); }
.dag-content { display: none; }
.dag-content.actief { display: block; }
.voorstelling { display: flex; gap: 24px; padding: 32px 0; border-bottom: 0.5px solid var(--rand); align-items: flex-start; }
.voorstelling:last-child { border-bottom: none; }
.v-image-col { flex-shrink: 0; width: 260px; }
.v-info-grid { flex: 1; min-width: 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.v-tijd-genre { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.v-tijd { font-size: 13px; color: var(--rood); font-weight: 500; }
.v-genre { font-size: 9px; letter-spacing: 0.16em; color: rgba(255,255,255,0.3); }
.v-titel { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.04em; margin-bottom: 4px; line-height: 1; }
.v-gezelschap { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.v-tekst { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 520px; }
.v-rechts { text-align: right; padding-top: 4px; }
.v-prijs { font-size: 13px; color: var(--wit); margin-bottom: 10px; }
.v-prijs-lijn { line-height: 1.6; }
.v-ticket {
  display: inline-block; font-size: 10px; letter-spacing: 0.1em;
  border: 0.5px solid rgba(204,0,0,0.5); color: var(--rood); padding: 7px 16px; transition: all 0.2s; white-space: nowrap;
}
.v-ticket:hover { background: var(--rood); color: var(--wit); border-color: var(--rood); }
.v-ticket.volgt { color: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.12); pointer-events: none; }

.v-mail-ticket { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.v-mail-label { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.v-mail-row { display: flex; align-items: center; gap: 6px; }
.v-mail-address {
  display: inline-block; font-size: 12px; color: var(--rood);
  border: 0.5px solid rgba(204,0,0,0.5); padding: 7px 12px;
  white-space: normal; word-break: break-word; max-width: 190px; text-align: right;
  transition: all 0.2s;
}
.v-mail-address:hover { background: var(--rood); color: var(--wit); border-color: var(--rood); }
.v-mail-copy {
  flex-shrink: 0; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 0.5px solid rgba(255,255,255,0.2); background: transparent; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 13px; line-height: 1; padding: 0; transition: all 0.2s;
}
.v-mail-copy:hover { border-color: var(--rood); color: var(--rood); }
.v-mail-copy.copied { border-color: #4caf7a; color: #4caf7a; }
@media (max-width: 768px) {
  .v-mail-ticket { align-items: flex-start; }
  .v-mail-address { text-align: left; max-width: none; }
}

.over { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--rand); }
.over-left { padding: 64px 40px; border-right: 0.5px solid var(--rand); }
.over-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); line-height: 1; margin-bottom: 28px; }
.over-body { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 2.0; margin-bottom: 28px; }
.over-link { font-size: 12px; letter-spacing: 0.1em; color: var(--rood); display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.over-right { padding: 64px 40px; display: flex; flex-direction: column; gap: 16px; }
.foto-placeholder { flex: 1; background: rgba(255,255,255,0.04); border: 0.5px solid var(--rand); display: flex; align-items: center; justify-content: center; min-height: 140px; }
.foto-placeholder span { font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.15); }

.toekomst { padding: 64px 40px; background: #0D0D14; border-bottom: 0.5px solid var(--rand); }
.toekomst-inner { max-width: 640px; }
.toekomst-label { font-size: 10px; letter-spacing: 0.2em; color: rgba(100,140,200,0.7); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.toekomst-label::after { content: ''; display: block; width: 28px; height: 0.5px; background: var(--blauw); }
.toekomst-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin-bottom: 24px; }
.toekomst-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 2.1; margin-bottom: 40px; }

/* Blog */
.blog-lijst { display: flex; flex-direction: column; }
.blog-item { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 32px 0; border-bottom: 0.5px solid var(--rand); }
.blog-item:last-child { border-bottom: none; }
.blog-item-img { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: rgba(255,255,255,0.04); }
.blog-item-datum { font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.blog-item-titel { font-family: 'Bebas Neue', sans-serif; font-size: 26px; line-height: 1.05; margin-bottom: 10px; }
.blog-item-excerpt { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 10px; }
.blog-item-link { font-size: 11px; letter-spacing: 0.1em; color: var(--rood); }
.blog-post-header { padding: 140px 40px 40px; border-bottom: 0.5px solid var(--rand); }
.blog-post-datum { font-size: 11px; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.blog-post-titel { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 68px); line-height: 1; }
.blog-post-cover { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.blog-post-body { padding: 48px 40px; max-width: 720px; }
.blog-post-body p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.95; margin-bottom: 22px; }
.terug-link { display: inline-block; font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); padding: 40px 40px 0; }
.terug-link:hover { color: var(--wit); }

/* Zaal / venue */
.zaal-hero { padding: 140px 40px 48px; border-bottom: 0.5px solid var(--rand); }
.zaal-intro { padding: 0 40px 48px; max-width: 720px; }
.zaal-intro p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.9; margin-bottom: 18px; }
.specs { padding: 0 40px 64px; }
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border: 0.5px solid var(--rand); }
.spec { padding: 22px 24px; border-right: 0.5px solid var(--rand); border-bottom: 0.5px solid var(--rand); }
.spec-label { font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.spec-value { font-size: 15px; color: var(--wit); line-height: 1.5; }
.zaal-galerij { padding: 0 40px 64px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 4px; }
.zaal-foto { aspect-ratio: 4/3; background-size: cover; background-position: center; cursor: pointer; position: relative; }
.zaal-foto-caption { position: absolute; bottom: 10px; left: 12px; font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.5); padding: 3px 8px; }

.cta { padding: 80px 40px; border-bottom: 0.5px solid var(--rand); }
.cta-label { font-size: 10px; letter-spacing: 0.2em; color: var(--rood); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.cta-label::after { content: ''; display: block; width: 28px; height: 0.5px; background: var(--rood); }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 96px); line-height: 0.92; margin-bottom: 24px; }
.cta-title span { color: var(--rood); }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.cta-contact { display: flex; flex-direction: column; gap: 10px; }
.cta-email { font-size: 20px; border-bottom: 0.5px solid rgba(204,0,0,0.4); padding-bottom: 6px; display: inline-block; transition: color 0.2s; }
.cta-email:hover { color: var(--rood); }
.cta-phone { font-size: 13px; color: rgba(255,255,255,0.35); }

footer { padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-left { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); }
.footer-right { display: flex; gap: 24px; }
.footer-right a { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-right a:hover { color: var(--wit); }

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--zwart); padding: 24px 20px; gap: 20px; border-bottom: 0.5px solid var(--rand); z-index: 99; }
  .nav-links.open a { font-size: 14px; color: var(--wit); }
  .hero { padding: 100px 20px 48px; }
  .intro { grid-template-columns: 1fr; }
  .intro-left { padding: 40px 20px; border-right: none; border-bottom: 0.5px solid var(--rand); }
  .intro-right { padding: 40px 20px; }
  .featured { padding: 48px 20px; }
  .prog { padding: 48px 20px; }
  .voorstelling { flex-direction: column; gap: 12px; }
  .v-info-grid { grid-template-columns: 1fr; gap: 12px; }
  .v-image-col { width: 100%; max-width: 320px; }
  .v-rechts { text-align: left; }
  .over { grid-template-columns: 1fr; }
  .over-left { padding: 48px 20px; border-right: none; border-bottom: 0.5px solid var(--rand); }
  .over-right { padding: 48px 20px; }
  .toekomst { padding: 0; }
  .toekomst > div { grid-template-columns: 1fr !important; }
  .toekomst > div > div:first-child { min-height: 240px !important; }
  .cta { padding: 48px 20px; }
  .blog-item { grid-template-columns: 1fr; }
  .zaal-hero, .zaal-intro, .specs, .zaal-galerij { padding-left: 20px; padding-right: 20px; }
  footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #111111;
  border-top: 0.5px solid rgba(255,255,255,0.15);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
#cookie-banner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}
#cookie-banner p a { color: #1A3A6B; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: #CC0000; color: #fff; border: none; padding: 10px 24px;
  font-size: 12px; letter-spacing: 0.08em; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s;
}
.cookie-accept:hover { background: #aa0000; }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5); border: 0.5px solid rgba(255,255,255,0.2);
  padding: 10px 24px; font-size: 12px; letter-spacing: 0.08em; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s;
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
  #cookie-banner { padding: 20px; flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* --- Admin --- */
.admin-body { background: #101014; color: #fff; font-family: 'DM Sans', sans-serif; min-height: 100vh; }
.admin-nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 32px; border-bottom: 0.5px solid var(--rand); }
.admin-nav-logo { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; font-size: 18px; }
.admin-nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
.admin-nav-links a { font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); }
.admin-nav-links a:hover, .admin-nav-links a.actief { color: #fff; }
.admin-wrap { max-width: 920px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-title { font-family: 'Bebas Neue', sans-serif; font-size: 34px; margin-bottom: 24px; }
.admin-card { border: 0.5px solid var(--rand); padding: 24px; margin-bottom: 20px; background: rgba(255,255,255,0.02); }
.admin-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 0.5px solid var(--rand); gap: 16px; }
.admin-row:last-child { border-bottom: none; }
.admin-row-main { font-size: 14px; }
.admin-row-sub { font-size: 12px; color: rgba(255,255,255,0.4); }
.admin-actions { display: flex; gap: 12px; flex-shrink: 0; }
.admin-actions a, .admin-btn { font-size: 11px; letter-spacing: 0.06em; color: var(--rood); background: none; border: 0.5px solid rgba(204,0,0,0.5); padding: 6px 14px; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.admin-actions a.delete, .admin-btn.delete { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.2); }
.admin-btn.primary { background: var(--rood); color: #fff; border-color: var(--rood); }
.admin-form label { display: block; font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin: 18px 0 6px; }
.admin-form input[type=text], .admin-form input[type=date], .admin-form input[type=password], .admin-form input[type=url], .admin-form textarea, .admin-form select {
  width: 100%; background: #16161c; border: 0.5px solid var(--rand); color: #fff; padding: 10px 12px; font-size: 14px; font-family: 'DM Sans', sans-serif;
}
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form .checkbox-row { display: flex; align-items: center; gap: 8px; margin-top: 18px; }
.admin-form .checkbox-row input { width: auto; }
.admin-flash { padding: 12px 16px; margin-bottom: 20px; font-size: 13px; border: 0.5px solid; }
.admin-flash.ok { border-color: rgba(80,200,120,0.5); color: #7fe0a0; }
.admin-flash.error { border-color: rgba(204,0,0,0.6); color: #ff8080; }
.admin-login-wrap { max-width: 360px; margin: 120px auto; padding: 0 20px; }
.admin-thumb { width: 64px; height: 44px; object-fit: cover; background: rgba(255,255,255,0.05); flex-shrink: 0; }
.admin-hint { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 6px; }

/* --- FOTO-CARROUSEL PER VOORSTELLING --- */
.show-carousel { position: relative; width: 100%; }
.show-carousel-viewport { aspect-ratio: 4/3; overflow: hidden; background: rgba(255,255,255,0.04); border: 0.5px solid var(--rand); }
.show-carousel-track { display: flex; height: 100%; transition: transform 0.35s ease; }
.show-carousel-slide { flex: 0 0 100%; height: 100%; cursor: pointer; }
.show-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.show-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  background: rgba(10,10,10,0.65); border: 0.5px solid var(--rand); color: var(--wit);
  font-size: 15px; line-height: 1; display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0; transition: all 0.2s;
}
.show-carousel-btn.prev { left: 6px; }
.show-carousel-btn.next { right: 6px; }
.show-carousel-btn:hover { background: var(--rood); border-color: var(--rood); }
.show-carousel-dots { display: flex; justify-content: center; gap: 5px; margin-top: 8px; }
.show-carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); border: none; padding: 0; cursor: pointer; }
.show-carousel-dot.active { background: var(--rood); }
