@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,700;9..144,900&family=Nunito:wght@400;500;600;700&display=swap');

/* ─── Kleurvariabelen ─────────────────────────────── */
:root {
  --wit:          #FFFBF5;
  --lichtgrijs:   #FAEEDE;
  --grijs:        #C8AA88;
  --tekst:        #2A1400;
  --tekst-zacht:  #6B4820;
  --donker:       #2A1400;
  --accent:       #FF6B35;
  --accent-licht: #FFF0E8;
  --accent-donker:#C8440F;

  /* Agentenkleuren */
  --leonardo:       #B87333;
  --leonardo-licht: #F5E6D3;
  --leonardo-donker:#7A4A1E;

  --maria:          #3A8B5C;
  --maria-licht:    #D6EFE2;
  --maria-donker:   #1E5738;

  --nelson:         #2E6DB4;
  --nelson-licht:   #D3E5F7;
  --nelson-donker:  #1A3F6F;

  --oprah:          #7B3FA0;
  --oprah-licht:    #EAD8F5;
  --oprah-donker:   #4A1870;

  --socrates:       #C45B3A;
  --socrates-licht: #F5DDD6;
  --socrates-donker:#7A3020;

  /* Typografie */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Schaduwen */
  --schaduw-zacht: 0 2px 12px rgba(28,26,23,0.08);
  --schaduw-medium: 0 6px 28px rgba(28,26,23,0.13);
  --schaduw-sterk: 0 16px 48px rgba(28,26,23,0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--wit);
  color: var(--tekst);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ─── Typografie ─────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { max-width: 68ch; }

/* ─── Layout helpers ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.grid-agenten {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* ─── Navigatie ──────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lichtgrijs);
  padding-block: 1rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--tekst);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--wit);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tekst-zacht);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.actief {
  background: var(--accent);
  color: white;
}

/* ─── Footer ──────────────────────────────────────── */
footer {
  background: var(--donker);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0;
  font-size: 0.875rem;
  margin-top: 6rem;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

footer a { color: rgba(255,255,255,0.8); }
footer a:hover { color: white; }

/* ─── Knop ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primair {
  background: var(--accent);
  color: white;
}

.btn-primair:hover {
  background: var(--accent-donker);
  transform: translateY(-1px);
  box-shadow: var(--schaduw-medium);
}

.btn-omlijnd {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-omlijnd:hover {
  background: var(--accent);
  color: white;
}

/* ─── Animaties ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  animation: fadeUp 0.55s ease both;
}

.fade-up-2 { animation: fadeUp 0.55s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.2s ease both; }
.fade-up-4 { animation: fadeUp 0.55s 0.3s ease both; }
.fade-up-5 { animation: fadeUp 0.55s 0.4s ease both; }

/* ─── Responsief ──────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links a { font-size: 0.8rem; padding: 0.35rem 0.7rem; }
  footer .container { flex-direction: column; text-align: center; }
}
