:root {
  --paper: #efeeeb;
  --ink: #0a4d47;
  --title-warm: #ef7d00;
  --title-cool: #97d2e3;
  --line: #b9d0c8;
  --card: rgba(255, 255, 255, 0.72);
  --shadow: rgba(12, 71, 65, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cormorant Garamond", "Book Antiqua", Georgia, serif;
  line-height: 1.35;
}

.page-decoration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(1200px 500px at 95% 105%, rgba(129, 186, 126, 0.35), transparent 65%),
    radial-gradient(1000px 500px at -10% 110%, rgba(245, 167, 91, 0.2), transparent 65%),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 18px,
      rgba(12, 71, 65, 0.02) 18px,
      rgba(12, 71, 65, 0.02) 20px
    );
}

.hero {
  padding: 2.2rem 1rem 1.3rem;
}

.hero-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid rgba(10, 77, 71, 0.2);
  box-shadow: 0 24px 40px -30px var(--shadow);
  backdrop-filter: blur(3px);
  padding: 1.2rem 1rem 2rem;
  animation: rise-in 700ms ease-out both;
}

.logo {
  width: min(560px, 96%);
  height: auto;
  border-radius: 7px;
  filter: saturate(0.95) contrast(1.03);
}

.vereniging {
  margin: 1.4rem 0 0;
  letter-spacing: 0.04em;
  font-size: clamp(1.1rem, 3vw, 1.55rem);
}

h1 {
  margin: 0.45rem 0 0;
  display: grid;
  gap: 0.1em;
}

.headline-main,
.headline-sub {
  font-family: "Sorts Mill Goudy", "Times New Roman", serif;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.95;
  text-wrap: balance;
}

.headline-main {
  color: var(--title-warm);
}

.headline-sub {
  color: var(--title-cool);
}

.intro {
  max-width: 34ch;
  margin: 1.2rem auto 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.hero-contact {
  margin: 1.4rem 0 0;
}

.contact-link {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 77, 71, 0.35);
  color: var(--ink);
  background: linear-gradient(145deg, rgba(151, 210, 227, 0.45), rgba(255, 255, 255, 0.9));
  text-decoration: none;
  font-family: "Sorts Mill Goudy", "Times New Roman", serif;
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -14px rgba(10, 77, 71, 0.9);
  background: linear-gradient(145deg, rgba(151, 210, 227, 0.72), rgba(255, 255, 255, 0.96));
}

.content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1rem 3.2rem;
}

.activiteiten {
  border-radius: 26px;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(10, 77, 71, 0.2);
  box-shadow: 0 24px 40px -30px var(--shadow);
  animation: rise-in 850ms 120ms ease-out both;
}

.section-header {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin: 0;
  font-family: "Sorts Mill Goudy", "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-header p {
  margin: 0.5rem 0 0;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  max-width: 55ch;
}

.table-wrap {
  overflow-x: auto;
  border-top: 2px dotted rgba(239, 125, 0, 0.75);
  padding-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
}

thead th {
  text-align: left;
  padding: 0.8rem 0.7rem;
  font-family: "Sorts Mill Goudy", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  border-bottom: 2px solid rgba(10, 77, 71, 0.45);
}

tbody td {
  padding: 0.75rem 0.7rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

tbody tr {
  transition: transform 180ms ease, background-color 180ms ease;
}

tbody tr:hover {
  transform: none;
  background: rgba(151, 210, 227, 0.15);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 1.1rem;
  }

  .hero-card {
    border-radius: 18px;
    padding-bottom: 1.5rem;
  }

  .activiteiten {
    padding: 1rem;
  }
}
