* { box-sizing: border-box; }
/* overflow-x ook op html: de decoratieve .blob's steken bewust buiten beeld
   (right/left negatief). Op mobiel (iOS Safari / Chrome-Android) is html de
   echte scroll-container, dus overflow-x:hidden op enkel body laat horizontaal
   pannen toch toe. Op html zetten sluit dat af. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2d2438;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Fredoka', sans-serif; letter-spacing: -.01em; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); margin: 0 0 1rem; line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: .75rem 0 .35rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.centered { text-align: center; }
.muted { color: #6b6178; }

/* Decorative blobs */
.blob {
  position: absolute; border-radius: 50%; z-index: 0; pointer-events: none; filter: blur(60px);
  opacity: .55;
}
.blob-1 { width: 480px; height: 480px; background: var(--c-primary); top: -180px; right: -150px; }
.blob-2 { width: 380px; height: 380px; background: var(--c-accent); top: 380px; left: -180px; opacity: .35; }

.btn {
  display: inline-block; padding: .9rem 1.75rem;
  background: var(--c-primary); color: #fff;
  border-radius: 999px; text-decoration: none; font-weight: 700;
  box-shadow: 0 6px 0 0 rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 0 0 rgba(0,0,0,.08); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 0 rgba(0,0,0,.08); }
.btn-link { color: var(--c-primary); text-decoration: none; font-weight: 700; padding: .9rem .5rem; }
.btn-link:hover { text-decoration: underline; }

/* Header */
.site-header { position: relative; z-index: 2; padding: 1.25rem 0; }
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: .5rem; font-family: 'Fredoka', sans-serif;
  font-weight: 700; font-size: 1.3rem; color: var(--c-primary);
  text-decoration: none; cursor: pointer; }
.logo:hover { opacity: .85; }
.logo .paw { font-size: 1.5rem; }
.logo .logo-img { max-height: 80px; width: auto; display: block; }
.nav nav { display: flex; gap: 1rem; align-items: center; }
.nav nav a { color: #4a4054; text-decoration: none; font-weight: 600; padding: .5rem .75rem; border-radius: 999px; }
.nav nav a:hover { background: var(--c-secondary); }
.nav nav a.cta { background: var(--c-primary); color: #fff; }
.nav nav a.cta:hover { background: var(--c-primary); opacity: .9; }

/* ===== Hamburger / mobile nav ===== */
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  padding: 0; margin: 0;
  background: transparent; border: none;
  cursor: pointer;
  flex-direction: column; gap: 5px;
  border-radius: 999px; color: var(--c-primary);
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--c-secondary); }
.nav-toggle:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: relative; }
  .nav nav {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 .75rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    z-index: 100;
  }
  .nav.is-open nav {
    max-height: 80vh;
    overflow-y: auto;
    padding: .5rem .75rem 1rem;
  }
  .nav nav a {
    padding: .85rem 1rem;
    border-radius: 999px;
    font-size: 1rem;
  }
  .nav nav a + a { margin-top: .25rem; }
  .nav nav a.cta { text-align: center; margin-top: .35rem; }
}

/* Hero */
.hero { position: relative; z-index: 1; padding: 3rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; gap: 2rem; } }
.badge {
  display: inline-block; background: var(--c-secondary); color: var(--c-primary);
  padding: .4rem 1rem; border-radius: 999px; font-weight: 700; font-size: .85rem;
  margin-bottom: 1.25rem;
}
.hero-text .lead { font-size: 1.2rem; color: #5b5266; max-width: 480px; }
.hero-actions { display: flex; gap: .5rem; align-items: center; margin-top: 2rem; flex-wrap: wrap; }

.hero-photo { position: relative; }
.photo-bubble {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden; aspect-ratio: 1; max-width: 480px; margin-left: auto;
  background: var(--c-secondary);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,.2);
}
.photo-bubble img { width: 100%; height: 100%; object-fit: cover; }
.photo-fallback { display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.photo-bubble.small { max-width: 360px; margin: 0; }
.sticker {
  position: absolute; font-size: 2.5rem;
  background: #fff; width: 64px; height: 64px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.1);
  animation: float 4s ease-in-out infinite;
}
.sticker-1 { top: 8%; right: 10%; }
.sticker-2 { bottom: 12%; left: 5%; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* About */
.about { padding: 5rem 0; position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.about-grid:not(:has(.about-photo)) { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; text-align: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-text h2 { color: var(--c-primary); }
.about-text p { color: #5b5266; }

/* Services */
.services { padding: 5rem 0; background: var(--c-secondary); position: relative; z-index: 1; }
.services h2 { color: var(--c-primary); }
.service-grid {
  display: grid; gap: 1rem; margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.service-card {
  background: #fff; border-radius: 24px; padding: 1.75rem;
  box-shadow: 0 6px 0 0 rgba(0,0,0,.04);
  transition: transform .2s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--c-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: .75rem;
}
.service-card h3 { color: var(--c-primary); margin: .25rem 0 .35rem; }
.service-card p { margin: 0; color: #5b5266; font-size: .95rem; }
.service-card .price {
  align-self: flex-start;
  margin-top: auto; padding: .35rem .9rem;
  background: var(--c-accent); color: #fff;
  border-radius: 999px; font-weight: 700; font-size: .9rem;
}
.service-card p { margin-bottom: 1rem; }

/* Webshop */
.shop { padding: 5rem 0; position: relative; z-index: 1; }
.shop h2 { color: var(--c-primary); }
.webshop-iframe { display: block; background: transparent; border: 0; box-shadow: none; }

/* Booking */
.booking { padding: 5rem 0; position: relative; z-index: 1; }
.booking h2 { color: var(--c-primary); }
.booking-iframe { display: block; background: transparent; border: 0; border-radius: 0; box-shadow: none; }

/* Reviews */
.reviews { padding: 5rem 0; position: relative; z-index: 1; }
.reviews h2 { color: var(--c-primary); }
.reviews-iframe { display: block; background: transparent; border: 0; border-radius: 0; box-shadow: none; }

/* Gallery */
.gallery { padding: 5rem 0; position: relative; z-index: 1; }
.gallery h2 { color: var(--c-primary); margin-bottom: 2rem; }
.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-item {
  display: block; overflow: hidden; border-radius: 24px;
  aspect-ratio: 1; background: var(--c-secondary);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* Contact */
.contact { padding: 5rem 0; position: relative; z-index: 1; }
.contact-card {
  background: var(--c-secondary);
  border-radius: 32px;
  padding: 3rem;
}
.contact-card h2 { color: var(--c-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } .contact-card { padding: 2rem; } }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .75rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; }
.contact-list .ico {
  width: 44px; height: 44px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-list a { color: #2d2438; text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--c-primary); }

.hours-list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: .35rem; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  background: #fff; padding: .65rem 1rem; border-radius: 12px;
}
.hours-list strong { color: var(--c-primary); }
.hours-list span { color: #5b5266; }

/* Footer */
.site-footer { padding: 2rem 0; text-align: center; color: #6b6178; font-size: .9rem; }
