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

@import 'reset.css';
@import 'variables.css';
@import 'layout.css';
@import 'components.css';

/* === Basis === */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--tekst-base);
  font-weight: var(--gewicht-normaal);
  line-height: var(--regelafstand-normaal);
  color: var(--kleur-tekst);
  background-color: var(--kleur-wit);
}

/* === Hero inhoud === */
.hero__tagline {
  display: inline-block;
  font-size: var(--tekst-sm);
  font-weight: var(--gewicht-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-terracotta);
  margin-bottom: var(--ruimte-4);
}

.hero__titel {
  font-family: var(--font-titel);
  font-size: clamp(var(--tekst-4xl), 7vw, var(--tekst-6xl));
  font-weight: var(--gewicht-vet);
  line-height: 1.1;
  color: var(--kleur-wit);
  margin-bottom: var(--ruimte-6);
  text-shadow: 0 2px 20px rgba(44, 26, 14, 0.4);
}

.hero__titel em {
  font-style: italic;
  color: var(--kleur-licht-zand);
}

.hero__ondertitel {
  font-size: clamp(var(--tekst-lg), 2.5vw, var(--tekst-xl));
  line-height: var(--regelafstand-ruim);
  color: var(--kleur-licht-zand);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: var(--ruimte-10);
  text-shadow: 0 1px 8px rgba(44, 26, 14, 0.3);
}

.hero__acties {
  display: flex;
  gap: var(--ruimte-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__pijl {
  position: absolute;
  bottom: var(--ruimte-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--kleur-licht-zand);
  animation: wiebelen 2s ease-in-out infinite;
  font-size: 1.5rem;
  opacity: 0.8;
  cursor: pointer;
}

@keyframes wiebelen {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === Over mij sectie specifiek === */
.over-mij .raster {
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: clamp(var(--ruimte-10), 6vw, var(--ruimte-16));
}

@media (max-width: 768px) {
  .over-mij .raster {
    grid-template-columns: 1fr;
  }

  .over-mij__foto {
    max-width: 320px;
    margin-inline: auto;
  }
}

/* === Workshops sectie === */
.workshops__intro {
  font-size: var(--tekst-lg);
  line-height: var(--regelafstand-ruim);
  color: var(--kleur-tekst-zacht);
  max-width: 65ch;
  margin-inline: auto;
  margin-bottom: clamp(var(--ruimte-10), 5vw, var(--ruimte-16));
  text-align: center;
}

/* === Contact sectie === */
.contact {
  background-color: var(--kleur-room);
}

.contact .raster {
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  gap: clamp(var(--ruimte-10), 6vw, var(--ruimte-16));
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--ruimte-4);
  margin-bottom: var(--ruimte-6);
}

.contact__info-icoon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--kleur-terracotta);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--kleur-wit);
}

.contact__info-tekst strong {
  display: block;
  font-weight: var(--gewicht-semibold);
  color: var(--kleur-bruin);
  margin-bottom: var(--ruimte-1);
}

.contact__info-tekst p,
.contact__info-tekst a {
  font-size: var(--tekst-sm);
  color: var(--kleur-tekst-zacht);
  line-height: var(--regelafstand-normaal);
}

.contact__info-tekst a:hover {
  color: var(--kleur-terracotta);
}

.contact__formulier-kaart {
  background-color: var(--kleur-wit);
  border-radius: var(--radius-xl);
  padding: clamp(var(--ruimte-8), 4vw, var(--ruimte-12));
  box-shadow: var(--schaduw-lg);
}

@media (max-width: 768px) {
  .contact .raster {
    grid-template-columns: 1fr;
  }
}

/* === Skiplink toegankelijkheid === */
.naar-inhoud {
  position: absolute;
  top: -100%;
  left: var(--ruimte-4);
  background-color: var(--kleur-terracotta);
  color: var(--kleur-wit);
  padding: var(--ruimte-3) var(--ruimte-6);
  border-radius: var(--radius-sm);
  font-weight: var(--gewicht-semibold);
  z-index: var(--z-toast);
  transition: top var(--overgang-snel);
}

.naar-inhoud:focus {
  top: var(--ruimte-4);
}

/* === Cookiebalk === */
.cookiebalk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--kleur-donker);
  color: var(--kleur-licht-zand);
  padding: var(--ruimte-4) var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ruimte-6);
  flex-wrap: wrap;
  z-index: var(--z-modal);
  box-shadow: 0 -4px 16px rgba(44, 26, 14, 0.2);
  transform: translateY(100%);
  transition: transform var(--overgang-normaal);
}

.cookiebalk.is-zichtbaar {
  transform: translateY(0);
}

.cookiebalk__tekst {
  font-size: var(--tekst-sm);
  line-height: var(--regelafstand-normaal);
  flex: 1;
}

.cookiebalk__knoppen {
  display: flex;
  gap: var(--ruimte-3);
  flex-shrink: 0;
}

/* === Print === */
@media print {
  .navigatie,
  .hero__pijl,
  .cookiebalk,
  .knop {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
