/* ============================================
   ROSA VREELING — TSLT WEBSITE
   Kleuren: Salie Groen & Goud
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --sage: #7D9B76;
  --sage-light: #B5C9B1;
  --sage-dark: #4A6B47;
  --sage-pale: #EFF4EE;
  --gold: #C5A55A;
  --gold-light: #E2CC94;
  --gold-dark: #9A7A35;
  --cream: #FAF7F2;
  --dark: #2C3A2B;
  --text: #3D4A3C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
}

/* ===== NAVIGATIE ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sage-light);
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--sage-dark); letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul li a {
  text-decoration: none; color: var(--text);
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s;
}
nav ul li a:hover, nav ul li a.active { color: var(--gold); }

/* Hamburger — verborgen op desktop */
.nav-toggle { display: none; }

/* ===== KNOPPEN ===== */
.btn-primary {
  display: inline-block; padding: 16px 40px;
  background: var(--sage-dark); color: white;
  text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold); }
.btn-outline {
  display: inline-block; padding: 15px 38px;
  border: 1px solid var(--sage-dark); color: var(--sage-dark);
  text-decoration: none; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s; margin-left: 16px;
}
.btn-outline:hover { background: var(--sage-pale); }

/* ===== SECTIES ===== */
section { padding: 100px 60px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300;
  color: var(--dark); line-height: 1.2;
}
.section-header p {
  margin-top: 16px; font-size: 0.95rem;
  color: var(--text); max-width: 560px;
  margin-left: auto; margin-right: auto; line-height: 1.8;
}

/* ===== DIVIDER ===== */
.divider {
  text-align: center; padding: 32px 0;
  color: var(--gold); font-size: 1rem; letter-spacing: 0.6em;
}

/* ===== PAGE HERO (subpagina's) ===== */
.page-hero {
  padding: 160px 60px 80px;
  background: linear-gradient(135deg, var(--cream) 60%, var(--sage-pale) 100%);
  text-align: center;
}
.page-hero .section-tag { display: block; margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300;
  color: var(--dark); line-height: 1.2; margin-bottom: 20px;
}
.page-hero h1 em { color: var(--sage-dark); font-style: italic; }
.page-hero p {
  max-width: 580px; margin: 0 auto;
  font-size: 1rem; line-height: 1.9; color: var(--text);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 48px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--cream);
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.78rem; color: rgba(250,247,242,0.4);
  letter-spacing: 0.1em; margin-top: 6px;
}
footer p {
  font-size: 0.75rem; color: rgba(250,247,242,0.4);
  text-align: right; line-height: 1.9;
}
footer a { color: var(--gold-light); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }

  /* Hamburger knop zichtbaar op mobiel */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 18px;
    cursor: pointer; background: none;
    border: none; padding: 0;
    z-index: 101;
  }
  .nav-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--sage-dark);
    transition: all 0.3s ease;
  }
  /* Hamburger → kruisje animatie */
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Menu uitschuiven van boven */
  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px; left: 0; right: 0;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--sage-light);
    padding: 16px 0 24px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  nav ul.open {
    transform: translateY(0);
  }
  nav ul li a {
    display: block;
    padding: 14px 32px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--sage-pale);
  }

  section { padding: 80px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .page-hero h1 { font-size: 2.2rem; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
  footer p { text-align: center; }
}

/* ===== ANIMATIES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease both; }

/* ===== FIBONACCI SPIRAAL (van visitekaartje) ===== */
.spiral-bg {
  position: relative; overflow: hidden;
}
.spiral-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M100,100 Q100,30 170,30 Q240,30 240,100 Q240,200 100,200 Q-40,200 -40,100 Q-40,0 100,0' stroke='%23C5A55A' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100,100 Q100,60 140,60 Q180,60 180,100 Q180,160 100,160 Q20,160 20,100 Q20,60 60,60' stroke='%23C5A55A' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Cpath d='M100,100 Q100,78 122,78 Q144,78 144,100 Q144,133 100,133 Q56,133 56,100' stroke='%23C5A55A' stroke-width='0.5' stroke-opacity='0.10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.spiral-bg > * { position: relative; z-index: 1; }

/* Rosa photo circle (van kaartje stijl) */
.rosa-photo-circle {
  border-radius: 50% 50% 50% 0;
  overflow: hidden;
  aspect-ratio: 1;
}
