/*
Theme Name:  Seres Vastgoed
Theme URI:   https://www.seresvastgoed.nl
Author:      Seres Vastgoed
Description: Officieel thema voor seresvastgoed.nl — volledig op maat gebouwd.
Version:     1.0.0
License:     Private
Text Domain: seres-vastgoed
*/

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

:root {
  --groen:     #2D5016;
  --groen-mid: #4A7C2F;
  --goud:      #C9A84C;
  --zwart:     #1C1C1A;
  --creme:     #F7F4EF;
  --zand:      #E8E3DA;
  --tekst:     #3A3A38;
}

html { scroll-behavior: smooth; }

body {
  background: var(--creme);
  color: var(--tekst);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Utility ──────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  display: block;
}

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  color: var(--zwart);
}

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: none;
}
.btn:hover { opacity: 0.85; }
.btn-primary  { background: var(--groen); color: var(--creme); }
.btn-outline  { background: transparent; color: var(--groen); border: 1px solid var(--groen); }
.btn-gold     { background: var(--goud); color: var(--zwart); text-align: center; font-weight: 500; }
.btn-outline-light { background: transparent; color: var(--creme); border: 1px solid rgba(247,244,239,0.5); text-align: center; }
.btn-outline-light:hover { border-color: var(--creme); opacity: 1; }

/* ─── Logo afbeelding ──────────────────────────────────────────────── */
.site-logo-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo { height: 48px; width: auto; display: block; }

/* ─── Navigatie ────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--zand);
  transition: box-shadow 0.2s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 40px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
  width: fit-content;
}
.logo-seres {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--zwart);
  line-height: 1;
}
.logo-line {
  width: 100%;
  height: 1px;
  background: var(--goud);
  margin: 4px 0 4px;
}
.logo-vastgoed {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-align: center;
  display: block;
  width: 100%;
  text-transform: uppercase;
  color: var(--groen-mid);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #666;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--groen); }

.nav-cta {
  background: var(--groen);
  color: var(--creme) !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--groen-mid); opacity: 1; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--zwart);
}

/* ─── Page hero (gedeeld) ──────────────────────────────────────────── */
.page-hero {
  background: white;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--zand);
}
.page-hero-label { color: var(--groen-mid); margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--zwart);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--groen); }
.page-hero-intro {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
}

/* ─── CTA sectie (gedeeld) ─────────────────────────────────────────── */
.cta-sectie { background: var(--groen); padding: 80px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-label { color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.cta-sectie .section-heading { color: var(--creme); }
.cta-sectie p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 480px; margin-top: 16px; font-weight: 300; line-height: 1.75; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }

/* ─── Footer ────────────────────────────────────────────────────────── */
footer {
  background: var(--zwart);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 20px; max-width: 280px; line-height: 1.7; font-weight: 300; }
.footer-logo .logo-seres { color: var(--creme); }
.footer-col h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 500; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--creme); }
.footer-contact li { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.8; }
.footer-contact li a { color: var(--goud); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ─── FAQ (gedeeld) ────────────────────────────────────────────────── */
.faq-sectie { background: var(--creme); padding: 100px 0; }
.faq-header { margin-bottom: 56px; }
.faq-label { color: var(--groen-mid); margin-bottom: 14px; }
.faq-lijst { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--zand); }
.faq-vraag {
  width: 100%; background: none; border: none;
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  cursor: pointer; text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px; font-weight: 400; color: var(--zwart); line-height: 1.3;
}
.faq-vraag:hover { color: var(--groen); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--groen-mid); transition: transform 0.3s ease; }
.faq-vraag[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-antwoord { display: none; padding-bottom: 24px; }
.faq-antwoord.open { display: block; }
.faq-antwoord p { font-size: 15px; color: #666; line-height: 1.8; font-weight: 300; max-width: 640px; }

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: white; padding: 24px; gap: 20px;
    border-top: 1px solid var(--zand);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); z-index: 99;
  }
  .nav-links.open a { color: var(--tekst); }
}
