/* ==========================================================================
   Duvel Deluxe — gedeelde stylesheet
   ========================================================================== */

:root {
  --bg: #121013;
  --bg-alt: #1b171a;
  --card: #201b1f;
  --red: #c8102e;
  --red-dark: #8f0c21;
  --gold: #d4af37;
  --gold-soft: #e8cf7a;
  --text: #f5f1ea;
  --text-muted: #b9b0b5;
  --border: #34292d;
  --radius: 14px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: 0.5px; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold-soft); }
h3 { font-size: 1.25rem; }

p { color: var(--text-muted); margin: 0 0 1em; }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 16, 19, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 1px;
  text-decoration: none;
}
.logo span { color: var(--red); }
.logo:hover { text-decoration: none; color: var(--text); }
.logo-mark { height: 26px; width: auto; }
.logo .presents {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.4rem;
  padding: 4px 10px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { max-height: 340px; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 14px 24px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(200, 16, 46, 0.28), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero h1 { margin-bottom: 10px; }
.hero .lead {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 30px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 34px;
}
.hero-meta strong { color: var(--text); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
}
.btn-primary:hover { color: #fff; text-decoration: none; filter: brightness(1.1); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}
.btn-outline:hover { text-decoration: none; background: rgba(212, 175, 55, 0.1); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }

.placeholder-note {
  display: inline-block;
  margin: 6px 0 20px;
  padding: 6px 14px;
  border: 1px dashed var(--gold);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 0.85rem;
  background: rgba(212, 175, 55, 0.08);
}

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card h3 { color: var(--text); margin-bottom: 8px; }

.card-highlight {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}

/* ---------- Price block ---------- */
.price-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, var(--card), var(--bg-alt));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.price-card .amount {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin: 6px 0 4px;
}
.price-card .amount small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-list {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
  text-align: left;
}
.price-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Schedule table ---------- */
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule th, .schedule td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.schedule th {
  background: var(--bg-alt);
  color: var(--gold-soft);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.schedule tr:last-child td { border-bottom: none; }
.schedule td.time { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ---------- VIP pricing table ---------- */
.vip-table-wrap { overflow-x: auto; }
.vip-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}
.vip-table th, .vip-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}
.vip-table th {
  background: var(--bg-alt);
  color: var(--gold-soft);
  font-family: "Poppins", sans-serif;
}
.vip-table tr:last-child td { border-bottom: none; }
.vip-table td.pkg { color: var(--gold); font-weight: 700; white-space: nowrap; }
.vip-table td.price { font-weight: 700; color: var(--text); white-space: nowrap; }

/* ---------- Poster / save-the-date ---------- */
.poster-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.poster {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ---------- Gallery placeholders ---------- */
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 10px, var(--card) 10px, var(--card) 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 10px;
}

/* ---------- Map ---------- */
.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact info list ---------- */
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
}
.info-list li:last-child { border-bottom: none; }
.info-list .label { color: var(--gold-soft); min-width: 110px; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { height: 42px; width: auto; margin-bottom: 14px; }
.footer-grid h4 { color: var(--text); font-size: 0.95rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

.badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
