/* =========================
   GOOGLE FONT
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

/* =========================
   VARIABELEN
   ========================= */

:root {
  --bg-page: #1f4f46;
  --bg-card: #276235;
  --bg-glow: rgba(159,214,200,0.12);

  --gold-top: #e3c86a;
  --gold-base: #b99624;
  --gold-bottom: #8a6f18;

  --text-main: #c9ced3;
  --text-muted: #aeb5bb;
  --accent: #9fd6c8;
}

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

/* =========================
   BODY & LAYOUT
   ========================= */

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, var(--bg-glow), transparent 60%),
    var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

main,
body > section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

/* =========================
   CARD
   ========================= */

.card {
  max-width: 48rem;
  width: 100%;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.1)),
    var(--bg-card);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* =========================
   FADE-IN
   ========================= */

.fade-in {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TYPOGRAFIE
   ========================= */

h1 {
  margin: 0 0 1.1rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.18rem;
  color: var(--gold-base);
  text-shadow:
    0 1px 0 var(--gold-top),
    0 -1px 0 var(--gold-bottom);
}

p {
  max-width: 38rem;
  margin: 1.1rem auto;
  font-size: 1rem;
  color: var(--text-main);
}

.small {
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   DIVIDER
   ========================= */

.divider {
  width: 70%;
  margin: 1.8rem auto;
  border: none;
  height: 1px;
  background: rgba(227, 200, 106, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.25),
    0 0 0 1px rgba(0,0,0,0.15);
}

/* =========================
   MENU / KNOPPEN
   ========================= */

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.menu-item {
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.06rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(227, 200, 106, 0.7);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.25),
    0 0 0 1px rgba(0,0,0,0.15);
}

.menu-item:hover {
  background: rgba(0,0,0,0.16);
}

.menu-item:active {
  transform: translateY(1px);
}

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

footer {
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  text-align: center;
  position: relative;
}

footer::before {
  content: "";
  display: block;
  width: 90%;
  height: 1px;
  margin: 0 auto 0.8rem;
  background: rgba(227, 200, 106, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.25),
    0 0 0 1px rgba(0,0,0,0.15);
}

footer .copyright {
  font-size: 0.65rem;
  letter-spacing: 0.07rem;
  color: var(--text-muted);
}

/* =========================
   GALERIJ (UNIFORME AFMETINGEN)
   ========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 42rem;
  margin: 2rem auto;
}

.gallery a img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 2px solid rgba(227, 200, 106, 0.7);
  background-color: rgba(0,0,0,0.18);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.45),
    0 4px 10px rgba(0,0,0,0.35);
}

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

@media (max-width: 640px) {
  h1 {
    font-size: 2.4rem;
  }

  .menu-items {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-item {
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
  }
}
