/* ═══════════════════════════════════════════════
   Kleur & Karakter — Main Stylesheet
   kleurkarakter.be
═══════════════════════════════════════════════ */

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

:root {
  --bg:         #111009;
  --bg-2:       #161410;
  --bg-3:       #1c1a15;
  --gold:       #c8a96e;
  --gold-light: #d9bc89;
  --gold-dim:   rgba(200, 169, 110, 0.18);
  --cream:      #e8dfc8;
  --cream-dim:  rgba(232, 223, 200, 0.55);
  --grey:       rgba(232, 223, 200, 0.28);
  --line:       rgba(200, 169, 110, 0.15);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 64px;
  background: linear-gradient(to bottom, rgba(17,16,9,0.97) 0%, transparent 100%);
  transition: background 0.4s;
}
nav.scrolled {
  background: rgba(17,16,9,0.98);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ─── SECTION BASE ─── */
section { padding: 120px 64px; }

.section-eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 72px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.divider {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 72px;
}

/* ─── BUTTONS ─── */
.btn-outline {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.35s, color 0.35s;
  cursor: pointer;
  background: transparent;
  display: inline-block;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

.btn-solid {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.35s, color 0.35s;
  cursor: pointer;
  display: inline-block;
}
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ─── QUOTE CTA SECTION ─── */
.quote-cta {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,169,110,0.06) 0%, transparent 70%),
    var(--bg);
}
.quote-cta p {
  font-size: 0.88rem;
  color: var(--grey);
  max-width: 400px;
  margin: 0 auto 40px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 48px 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.footer-slogan {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-style: italic;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a,
.footer-contact a,
.footer-contact li {
  font-size: 0.82rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  display: flex; align-self: center; justify-content: center;
  color: var(--cream);
}

@media (max-width: 900px) {
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .footer-bottom {
    grid-column: 1;
  }
  .footer-contact a,
  .footer-contact li {
    font-size: 0.75rem;
    word-break: break-all; /* voorkomt dat email buiten frame valt */
  }
  .footer-copy {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
    font-size: 0.62rem;
  }
  .footer-brand {
    grid-column: 1;
  }
  .footer-slogan {
    white-space: normal;
    font-size: 0.72rem;
  }
}
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in   { animation: fadeUp 0.9s ease both; }
.fade-in-2 { animation: fadeUp 0.9s 0.15s ease both; }
.fade-in-3 { animation: fadeUp 0.9s 0.3s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-links { gap: 10px; }
  section { padding: 80px 28px; }
  footer { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 450px) {
  nav { padding: 20px 16px; }
  .nav-logo { font-size: 0.85rem; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.6rem; letter-spacing: 0.08em; }
}
