:root {
  --kleur-achtergrond: #0d0d0d;
  --kleur-tekst: #e8e0d5;
  --kleur-primair: #c9a84c;
  --kleur-primair-contrast: #0d0d0d;
  --kleur-zacht: #1a1814;
  --font-koppen: 'Georgia', serif;
  --font-tekst: 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: var(--kleur-primair);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-koppen);
  color: var(--kleur-tekst);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========================
   HEADER & NAV
======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-koppen);
  font-size: 1.5rem;
  color: var(--kleur-primair);
  letter-spacing: 0.04em;
  line-height: 1;
}

nav[data-pagira-menu] ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  padding: 0;
  margin: 0;
}

nav[data-pagira-menu] ul li a {
  font-family: var(--font-tekst);
  font-size: 15px;
  color: var(--kleur-tekst);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  display: inline-block;
  transition: color 0.2s;
}

nav[data-pagira-menu] ul li a:hover {
  color: var(--kleur-primair);
}

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1610 0%, #0d0d0d 50%, #1a1208 100%);
  overflow: hidden;
  padding: 4rem 1.25rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-koppen);
  font-size: clamp(2.8rem, 9vw, 6rem);
  color: var(--kleur-primair);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 24px rgba(201,168,76,0.18);
}

.hero-sub {
  font-family: var(--font-tekst);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--kleur-tekst);
  opacity: 0.65;
  margin-bottom: 1.8rem;
}

.hero-intro {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--kleur-tekst);
  opacity: 0.88;
  margin-bottom: 2.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-block;
  background-color: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  font-family: var(--font-tekst);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--kleur-primair);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  min-height: 44px;
}

.btn:hover {
  background-color: transparent;
  color: var(--kleur-primair);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--kleur-primair);
}

.btn-outline:hover {
  background-color: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
}

.btn-sm {
  font-size: 13px;
  padding: 0.6rem 1.2rem;
}

.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ========================
   SECTIES
======================== */
.sectie {
  padding: 5rem 0;
}

.sectie-zacht {
  background-color: var(--kleur-zacht);
}

.sectie-donker {
  background-color: var(--kleur-achtergrond);
}

.sectie-titel {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 0.6rem;
  text-align: center;
}

.sectie-titel.licht {
  color: var(--kleur-primair);
}

.sectie-sub {
  text-align: center;
  opacity: 0.75;
  margin-bottom: 2.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sectie-sub.licht {
  color: var(--kleur-tekst);
}

/* ========================
   OVER MIJ
======================== */
.over-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 700px) {
  .over-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.over-tekst h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--kleur-primair);
  margin-bottom: 1.2rem;
}

.over-tekst p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.over-foto-wrapper {
  display: flex;
  justify-content: center;
}

.over-foto-placeholder {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: rgba(201,168,76,0.06);
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--kleur-primair);
  opacity: 0.6;
}

.over-foto-placeholder span {
  font-size: 3rem;
}

.over-foto-placeholder p {
  font-size: 0.9rem;
  text-align: center;
}

/* ========================
   SINGLE
======================== */
.single-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 700px) {
  .single-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.single-cover {
  display: flex;
  justify-content: center;
}

.cover-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.04));
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cover-icon {
  font-size: 3.5rem;
}

.cover-label {
  font-family: var(--font-koppen);
  font-size: 1.1rem;
  color: var(--kleur-primair);
  text-align: center;
  padding: 0 1rem;
}

.label-tag {
  display: inline-block;
  background-color: var(--kleur-primair);
  color: var(--kleur-primair-contrast);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
}

.single-tekst h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--kleur-primair);
  margin-bottom: 1.2rem;
}

.single-tekst p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.single-tekst .btn-outline {
  margin-top: 0.5rem;
}

/* ========================
   AGENDA
======================== */
.agenda-lijst {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 720px;
  margin: 0 auto;
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  flex-wrap: wrap;
}

.agenda-item.featured {
  border-color: var(--kleur-primair);
  background-color: rgba(201,168,76,0.1);
}

.agenda-datum {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.agenda-datum .dag {
  font-family: var(--font-koppen);
  font-size: 2.2rem;
  color: var(--kleur-primair);
  line-height: 1;
}

.agenda-datum .maand {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kleur-primair);
  opacity: 0.75;
}

.agenda-info {
  flex: 1;
  min-width: 140px;
}

.agenda-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.agenda-info .agenda-locatie,
.agenda-info .agenda-tijd {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0.15rem 0;
}

.agenda-actie {
  flex-shrink: 0;
}

.agenda-item.meer {
  justify-content: center;
  border-style: dashed;
  opacity: 0.65;
  font-style: italic;
  font-size: 0.95rem;
}

/* ========================
   CONTACT
======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
  }
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--kleur-primair);
  margin-bottom: 0.8rem;
}

.contact-info p {
  opacity: 0.85;
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-block;
  color: var(--kleur-primair);
  font-weight: 600;
  font-size: 1rem;
  word-break: break-all;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-veld {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-veld label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kleur-tekst);
  opacity: 0.85;
}

.form-veld input,
.form-veld textarea {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: var(--kleur-tekst);
  font-family: var(--font-tekst);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  transition: border-color 0.2s;
  width: 100%;
}

.form-veld input:focus,
.form-veld textarea:focus {
  outline: none;
  border-color: var(--kleur-primair);
}

.form-veld textarea {
  resize: vertical;
  min-height: 130px;
}

.verplicht {
  color: var(--kleur-primair);
}

/* ========================
   FOOTER
======================== */
.site-footer {
  background-color: var(--kleur-zacht);
  border-top: 1px solid rgba(201,168,76,0.18);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-naam {
  font-family: var(--font-koppen);
  font-size: 1.2rem;
  color: var(--kleur-primair);
  letter-spacing: 0.06em;
}

.footer-mail a {
  color: var(--kleur-tekst);
  opacity: 0.75;
  font-size: 0.9rem;
}

.footer-mail a:hover {
  color: var(--kleur-primair);
  opacity: 1;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.45;
  margin-top: 0.25rem;
}


