/* Basisstijl – afgestemd op het briefpapier */

:root {
  --bg: #f6f4ef;
  --primary: #1d3557;
  --secondary: #1d3557;
  --accent: #c05621;
  --accent-soft: #b88a2e;
  --text: #1d3557;
  --muted: #6b7280;
  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Dosis", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout helpers */

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

/* Header */

.site-header {
  background: linear-gradient(135deg, #f6f4ef 0%, #ffffff 45%, #f6f4ef 100%);
  border-bottom: 3px solid rgba(26, 76, 68, 0.08);
  padding: 1.25rem 0 1rem;
}

.small-header {
  padding-bottom: 0.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-wrap {
  flex: 0 0 auto;
}

.logo {
  display: block;
  height: 72px;
  width: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  color: var(--primary);
}

.overline {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  color: var(--accent-soft);
}

.tagline {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

/* Hero */

.hero {
  padding: 2.5rem 0 2rem;
}

.hero-inner {
  display: grid;
  gap: 2rem;
}

.hero-text h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: var(--secondary);
}

.hero-text p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #374151;
}

.hero-cards {
  display: grid;
  gap: 0.75rem;
}

.pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--primary);
}

.pill-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-soft);
  margin-bottom: 0.15rem;
}

.pill p {
  margin: 0;
  font-size: 0.95rem;
}

/* Sections */

.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: rgba(26, 76, 68, 0.03);
  border-top: 1px solid rgba(26, 76, 68, 0.05);
  border-bottom: 1px solid rgba(26, 76, 68, 0.05);
}

.section h2 {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  color: var(--secondary);
}

/* Cards & grid */

.grid {
  display: grid;
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--accent);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--primary);
}

.card p {
  margin: 0;
}

/* Engagement */

.engagement-list {
  display: grid;
  gap: 1.2rem;
}

.engagement-item {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
}

.engagement-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--secondary);
}

.engagement-item p {
  margin: 0;
}

/* Contact */

#contact p {
  margin-bottom: 0.6rem;
}

.contact-line a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(26, 76, 68, 0.4);
}

.contact-line a:hover {
  border-bottom-style: solid;
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid rgba(26, 76, 68, 0.1);
  margin-top: 1.5rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-note {
  margin-top: 0.25rem;
}

/* 404-pagina */

.notfound-body {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9) 0, var(--bg) 55%);
}

.notfound-main {
  padding: 2.5rem 0 2rem;
}

.notfound-inner {
  text-align: center;
}

.bee-emoji {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.notfound-text {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.notfound-small {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.button {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(192, 86, 33, 0.4);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(192, 86, 33, 0.5);
}

/* Responsive tweaks */

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    align-items: center;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .engagement-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    height: 60px;
  }

  .hero {
    padding-top: 2rem;
  }
}

/* Prikbord / tag-wall */

.tag-wall {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--secondary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 76, 68, 0.12);
  text-decoration: none;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out, background 0.08s ease-out;
  cursor: default;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  background: #b88a2e;
}

.tag-big {
  font-size: 1rem;
  font-weight: 600;
  background: #1d3557;
  color: #ffffff;
  border-color: transparent;
}

.tag-med {
  font-weight: 500;
}

.tag-small {
  font-size: 0.8rem;
  opacity: 0.95;
}

.tag-tilt-left {
  transform: rotate(-2.5deg);
}

.tag-tilt-right {
  transform: rotate(2.5deg);
}

.tag-tilt-left:hover,
.tag-tilt-right:hover {
  transform: rotate(0deg) translateY(-2px);
}

