/* =========================================================
   Basis & reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

:root {
  --radius-xl: 20px;
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.15);
  --shadow-strong: 0 6px 30px rgba(0,0,0,0.20);
  --blur: 6px;
  --hover-zoom-scale: 1.06;
  --trans-fast: 0.15s ease;
  --trans-med: 0.25s ease;
}

body {
  font-family: "Outfit", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #111;
}

/* =========================================================
   Layout containers
   ========================================================= */
#wrapper {
  width: min(1100px, 94%);
  margin: auto;
  text-align: center;
  padding: 20px;
}

/* =========================================================
   Logo
   ========================================================= */
#logo {
  text-align: center;
  padding: 40px 0 10px;
}

.logo {
  width: auto;
  max-height: 400px;
  max-width: 600px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.25));
}

.logo_small {
  width: 50px;
  height: auto;
  display: inline-block;
  transition: transform var(--trans-med), filter var(--trans-med);
}
.logo_small:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

/* Geen underline bij afbeeldingen in links */
a img {
  text-decoration: none !important;
}
a img::after {
  display: none !important;
  content: none !important;
}
/* voorkom lijntje op hover bij alleen-afbeelding-links */
a:has(img):hover::after {
  width: 0 !important;
}

/* =========================================================
   Navigatie / menu
   ========================================================= */
#menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  background: rgba(255,255,255,0.8);
  padding: 10px 16px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(var(--blur));
  backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-soft);
}

#menu a.linkmenu {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  padding: 8px 16px;
  border-radius: 30px;
  transition: background var(--trans-med), transform var(--trans-fast);
  position: relative;
}
#menu a.linkmenu:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
#menu a.linkmenu::after { display: none; }

/* =========================================================
   Content
   ========================================================= */
#content {
  background: rgba(255,255,255,0.85);
  color: #000;
  border-radius: var(--radius-xl);
  padding: clamp(18px, 4vw, 36px);
  margin-top: 30px;
  box-shadow: var(--shadow-strong);
  text-align: left;
  line-height: 1.6;
  -webkit-backdrop-filter: blur(var(--blur));
  backdrop-filter: blur(var(--blur));
}

h1, h2, h3 {
  font-weight: 700;
  margin-top: 0;
  color: #000;
}

h1 {
  font-size: clamp(28px, 4vw, 42px);
  border-bottom: 2px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

p {
  color: #111;
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 16px;
}

b { color: #000; font-weight: 700; }

/* =========================================================
   Footer
   ========================================================= */
footer {
  text-align: center;
  padding: 20px;
  color: #000;
  font-size: 14px;
  margin-top: 20px;
}

/* =========================================================
   Links
   ========================================================= */
a {
  color: #111;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color var(--trans-med);
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #111;
  transition: width var(--trans-med);
}

a:hover { color: #000; }

a:hover::after { width: 100%; }

.link_footer {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: none;
  cursor: pointer;
}
.link_footer:hover {
  color: #333;
  text-decoration: none;
}
.link_footer::after { display: none !important; }

/* =========================================================
   Universele image-zoom + tekstuitlijning
   ========================================================= */
img:not(.no-zoom) {
  transition: transform var(--trans-med), filter var(--trans-med);
  will-change: transform;
  margin: 10px;
  vertical-align: middle;
}
img:not(.no-zoom):hover {
  transform: scale(var(--hover-zoom-scale));
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.20));
}

.img-text-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.img-text-row img {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

@media (max-width: 700px) {
  #menu {
    flex-direction: column;
    gap: 8px;
    border-radius: 16px;
  }
  #content { padding: 20px; }
  .logo { max-width: 240px; }
  .img-text-row { flex-direction: column; align-items: flex-start; }
}
