/* ===== Levensgenieten — huisstijl ===== */

:root {
  --rood: #F51112;
  --roze: #FF6F91;
  --goud: #F4A300;
  --crème: #FFF8F0;
  --donker: #3A2E39;
  --wit: #FFFFFF;
  --max-width: 1080px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(58, 46, 57, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--donker);
  background: var(--crème);
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Caveat', cursive;
  line-height: 1.1;
  margin: 0 0 0.3em 0;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.section-inner, .header-inner, .hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--wit);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(58, 46, 57, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--donker);
}

.logo {
  height: 78px;
  width: 78px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Caveat', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rood);
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--donker);
  padding: 6px 4px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--rood);
  border-color: var(--goud);
}

/* Hero */
.hero {
  background: var(--rood);
  color: var(--wit);
  text-align: center;
  padding: 96px 24px 100px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #F277E6;
  text-shadow: 0 0 16px rgba(245, 17, 18, 0.6), 0 6px 18px rgba(0, 0, 0, 0.25);
}

.tagline {
  font-family: 'Give You Glory', cursive;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 400;
  margin: 0 0 18px 0;
}

.intro {
  font-family: 'Give You Glory', cursive;
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
}

.cta-button {
  display: inline-block;
  background: var(--wit);
  color: var(--rood);
  font-weight: 800;
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--rood);
}

.section-lead {
  font-size: 1.1rem;
  margin-top: -8px;
  margin-bottom: 32px;
  color: var(--donker);
  opacity: 0.85;
}

/* Over ons */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.over-ons {
  background: var(--wit);
}

.giraffe-quote {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--goud);
  font-weight: 700;
  margin-top: 24px;
}

.col-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Foto's */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--wit);
}

.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-grid figure:hover img {
  transform: scale(1.05);
}

/* Contact */
.contact {
  background: var(--wit);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--crème);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--donker);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

a.contact-item:hover {
  transform: translateY(-3px);
}

.contact-label {
  font-weight: 800;
  color: var(--rood);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--donker);
  color: var(--crème);
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 72px 20px 80px;
  }

  .section {
    padding: 56px 0;
  }
}
