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

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ===== VARIABELEN ===== */
:root {
  --primary:          #5E1287;
  --primary-dark:     #4a0d6b;
  --primary-light:    #7a3fa3;
  --accent:           #FAB1EE;
  --accent-dark:      #f095df;
  --secondary:        #B357A7;
  --secondary-dark:   #8e3a80;
  --secondary-light:  #C192DE;
  --gray-light:       #faf8fc;
}

/* ===== BASE ===== */
body {
  font-family: 'Lora', serif;
  color: #171717;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
main { flex: 1; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ===== NAVIGATIE ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-bottom: 2px solid rgba(250,177,238,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 4rem;
}
.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 60;
  background: var(--accent);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(250,177,238,0.4);
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}
.hamburger.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* ===== MOBIEL MENU ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(94,18,135,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: auto;
  width: 16rem;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary-dark));
  color: white;
  z-index: 50;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  border-bottom-right-radius: 1rem;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-content {
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu-content a {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s ease;
}
.mobile-menu-content a:hover { color: var(--accent); }
.mobile-divider { border-top: 1px solid rgba(250,177,238,0.3); }
.mobile-contact a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-contact a:hover { color: var(--accent); }

/* ===== HERO (standaard – aanbod, agenda, over mij) ===== */
.hero {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  padding: 4rem 0;
  text-align: center;
}
@media (min-width: 768px) { .hero { padding: 6rem 0; } }
.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }

/* ===== HOME HERO (met logo) ===== */
.hero-home {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  height: 228px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) { .hero-home { height: 308px; } }

.hero-logo-glow {
  background: radial-gradient(circle, rgba(255,255,255,1) 60%, rgba(255,255,255,0) 72%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-logo-glow { width: 310px; height: 310px; }
}
.hero-logo-glow img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .hero-logo-glow img { width: 195px; height: 195px; }
}

/* ===== HOME TEKST ===== */
.home-text {
  padding: 5rem 0;
  background: white;
}
.home-text-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .home-text-inner { padding: 0 1.5rem; } }
.home-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .home-text h2 { font-size: 2.25rem; } }
.home-text p {
  font-size: 1.125rem;
  color: rgba(94,18,135,0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.home-text p:last-child { margin-bottom: 0; }

/* ===== AANBOD KAARTEN ===== */
.services-section {
  padding: 5rem 1rem;
}
@media (min-width: 640px) { .services-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .services-section { padding: 5rem 2rem; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  border-top: 4px solid var(--primary);
  transition: box-shadow 0.3s ease;
}
.service-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.service-card.border-accent    { border-top-color: var(--accent); }
.service-card.border-secondary { border-top-color: var(--secondary); }
.service-card.border-secondary-light { border-top-color: var(--secondary-light); }

.card-deco {
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.service-card:hover .card-deco { transform: scale(1.5); }
.deco-accent          { background: rgba(250,177,238,0.15); }
.deco-secondary-light { background: rgba(193,146,222,0.15); }
.deco-primary         { background: rgba(94,18,135,0.08); }

.card-body { position: relative; z-index: 1; }
.card-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-card p {
  color: rgba(94,18,135,0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ===== KNOPPEN ===== */
.btn {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-full { display: block; width: 100%; }
.btn-lg { padding: 1rem 2.5rem; }
.btn-glow { box-shadow: 0 8px 20px rgba(250,177,238,0.35); }

/* ===== CTA SECTIE ===== */
.cta-section {
  padding: 4rem 0;
  background: var(--gray-light);
  text-align: center;
}
.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .cta-section h2 { font-size: 2.25rem; } }
.cta-section p {
  font-size: 1.125rem;
  color: rgba(94,18,135,0.7);
  margin-bottom: 2.5rem;
}

/* ===== AGENDA ===== */
.agenda-section {
  padding: 4rem 1rem;
}
@media (min-width: 640px) { .agenda-section { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .agenda-section { padding: 4rem 2rem; } }

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .agenda-grid { grid-template-columns: 2fr 1fr; } }

.agenda-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 2rem;
}
.agenda-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.agenda-events { display: flex; flex-direction: column; gap: 0.5rem; }

.agenda-event {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(94,18,135,0.1);
  border-radius: 0.5rem;
  transition: background 0.3s ease;
  align-items: flex-start;
}
.agenda-event:last-child { border-bottom: none; }
.agenda-event:hover { background: var(--gray-light); }

.event-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.icon-1 { background: var(--primary); }
.icon-2 { background: linear-gradient(to bottom right, var(--accent), var(--secondary-light)); }
.icon-3 { background: linear-gradient(to bottom right, var(--secondary), var(--accent)); }
.icon-4 { background: linear-gradient(to bottom right, var(--primary-light), var(--secondary-light)); }

.event-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.event-info .event-date {
  color: rgba(94,18,135,0.7);
  font-size: 0.975rem;
  margin-bottom: 0.25rem;
}
.event-info .event-desc { color: rgba(94,18,135,0.6); font-size: 0.875rem; }

.agenda-notice {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: 0.75rem;
  border-left: 4px solid var(--accent);
  color: rgba(94,18,135,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== AGENDA SIDEBAR ===== */
.sidebar-booking {
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 2rem;
  position: sticky;
  top: 5rem;
  height: fit-content;
}
.sidebar-booking h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.booking-features { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.booking-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.booking-feature .icon { font-size: 1.5rem; flex-shrink: 0; }
.booking-feature .label { font-weight: 600; }
.booking-feature .sub { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.booking-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-btn {
  display: block;
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.sidebar-btn-accent { background: var(--accent); color: var(--primary); }
.sidebar-btn-accent:hover { background: var(--accent-dark); }
.sidebar-btn-white { background: white; color: var(--primary); }
.sidebar-btn-white:hover { background: #f3f4f6; }

/* ===== OVER MIJ ===== */
.over-mij-section {
  padding: 5rem 1rem;
}
@media (min-width: 640px) { .over-mij-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .over-mij-section { padding: 5rem 2rem; } }

.over-mij-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .over-mij-grid { grid-template-columns: 2fr 1fr; } }

.over-mij-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 2rem;
}
@media (min-width: 768px) { .over-mij-card { padding: 3rem; } }
.over-mij-card h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}
.over-mij-card .bio { display: flex; flex-direction: column; gap: 1.5rem; }
.over-mij-card .bio p {
  font-size: 1.125rem;
  color: rgba(94,18,135,0.7);
  line-height: 1.75;
}
.over-mij-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .expertise-grid { grid-template-columns: 1fr 1fr; } }

.expertise-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: 0.75rem;
  transition: box-shadow 0.3s ease;
}
.expertise-item:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.expertise-item .exp-icon { font-size: 1.875rem; flex-shrink: 0; }
.expertise-item h4 { font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.expertise-item p { font-size: 0.875rem; color: rgba(94,18,135,0.7); }

/* ===== OVER MIJ SIDEBAR ===== */
.over-mij-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-stats {
  background: linear-gradient(to bottom right, var(--primary), var(--secondary));
  color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 2rem;
}
.sidebar-stats h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
}
.stat-item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.stat-value { font-size: 2.5rem; font-weight: 700; }

.sidebar-cred {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  border-left: 4px solid var(--accent);
}
.sidebar-cred h4 { font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.sidebar-cred ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-cred li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(94,18,135,0.7); }
.sidebar-cred .check { color: var(--accent); font-weight: 700; }

.sidebar-cta {
  background: var(--accent);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 2rem;
  text-align: center;
}
.sidebar-cta h4 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 0.875rem; font-weight: 600; color: var(--primary); margin-bottom: 1.5rem; }
.sidebar-cta a {
  display: block;
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: background 0.3s ease;
}
.sidebar-cta a:hover { background: var(--primary-dark); }

/* ===== OVER MIJ TEKST SECTIE ===== */
.over-mij-tekst {
  padding: 5rem 0;
  background: white;
}

.over-mij-tekst-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .over-mij-tekst-inner { padding: 0 1.5rem; } }

.over-mij-tekst h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .over-mij-tekst h2 { font-size: 2.25rem; } }

.over-mij-tekst .bio p {
  font-size: 1.125rem;
  color: rgba(94, 18, 135, 0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.over-mij-tekst .bio p:last-child { margin-bottom: 0; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  color: white;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer-col h3 { font-size: 1.125rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.footer-col p  { font-size: 0.875rem; color: #e5e7eb; line-height: 1.75; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: #e5e7eb; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact p { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #e5e7eb; }
.footer-contact a { color: #e5e7eb; transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(250,177,238,0.2);
  padding: 2rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.875rem; color: #d1d5db; }

/* ===== NIEUWS ===== */
.news-section {
  padding: 5rem 0;
  background: white;
}

.news-article {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .news-article { padding: 0 1.5rem; } }
.news-image {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
@media (max-width: 640px) { .news-image { margin-bottom: 2rem; } }
.news-article h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .news-article h2 { font-size: 2.25rem; } }

.news-subtitle {
  font-size: 1.25rem;
  color: rgba(94,18,135,0.7);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.75;
}
@media (max-width: 640px) { .news-subtitle { font-size: 1.05rem; margin-bottom: 1.5rem; } }

.news-article h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.news-article p {
  font-size: 1.125rem;
  color: rgba(94,18,135,0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--gray-light);
  border-radius: 0.75rem;
  overflow: hidden;
  table-layout: fixed;
  box-sizing: border-box;
}
.info-table tr td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(94,18,135,0.1);
  color: rgba(94,18,135,0.7);
  font-size: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 640px) {
  .info-table tr td { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
  .info-table tr td:first-child { font-weight: 600; }
}
.info-table tr:last-child td { border-bottom: none; }
.info-table tr td:first-child { font-weight: 600; }
.info-table a { color: var(--primary); font-weight: 600; transition: color 0.3s ease; }
.info-table a:hover { color: var(--accent); }

.news-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(250,177,238,0.2);
}
@media (max-width: 640px) { .news-cta { margin-top: 2rem; padding-top: 1.5rem; } }
