/* House of Bubbles — basis (typografie, knoppen, helpers). Componenten volgen per pagina. */

body {
  font-family: var(--hob-font-body);
  font-weight: var(--hob-fw-book);
  font-size: var(--hob-body);
  line-height: var(--hob-lh-body);
  color: var(--hob-text);
  background-color: var(--hob-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---- Koppen ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hob-font-head);
  color: var(--hob-heading);
  line-height: var(--hob-lh-head);
  font-weight: var(--hob-fw-black);
  margin: 0 0 .5em;
}
h1 { font-size: var(--hob-h1); letter-spacing: -.01em; }
h2 { font-size: var(--hob-h2); letter-spacing: -.005em; }
h3 { font-size: var(--hob-h3); font-weight: var(--hob-fw-bold); }
h4 { font-size: var(--hob-h4); font-weight: var(--hob-fw-bold); }

/* Cursief-accent in koppen ("reason to celebrate") */
h1 em, h2 em, .hob-accent-italic { font-style: italic; font-weight: var(--hob-fw-medium); }

/* Decoratief 'Postal'-accent: nu Mulish-600 (echte Postal alleen in logo, vector) */
.is-postal { font-weight: var(--hob-fw-medium); letter-spacing: .01em; }

p { margin: 0 0 1rem; }
a { color: var(--hob-olive); text-decoration: none; transition: color var(--hob-ease); }
a:hover { color: var(--hob-olive-hover); }

.hob-eyebrow {
  font-size: var(--hob-eyebrow);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: var(--hob-fw-medium);
  color: var(--hob-text-muted);
}
.hob-body-lg { font-size: var(--hob-body-lg); }

/* ---- Layout helper ---- */
.hob-container {
  width: 100%;
  max-width: var(--hob-container);
  margin-inline: auto;
  padding-inline: var(--hob-gutter);
}

/* ---- Knoppen ---- */
.hob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--hob-font-body);
  font-weight: var(--hob-fw-medium);
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.8rem;
  border-radius: var(--hob-radius-pill); /* volledige pil (klantcorrectie 2026-07-06: knoppen blijven pil, alleen kaarten/keuzevakken kregen 20px) */
  border: 0;
  cursor: pointer;
  transition: background-color var(--hob-ease), color var(--hob-ease),
              border-color var(--hob-ease), transform var(--hob-ease);
}
.hob-btn:hover { transform: translateY(-2px); }

/* Primair = groen #5e6040 / tekst #eef1f0 (consistent met native Elementor-knoppen) */
.hob-btn--primary { background: #5e6040; color: #eef1f0; font-weight: var(--hob-fw-bold); }
.hob-btn--primary:hover, .hob-btn--primary:focus { background: #4f512f !important; color: #eef1f0; }

/* Secundair = licht #d1d0c0 / tekst #312b22 */
.hob-btn--outline, .hob-btn--ghost { background: #d1d0c0; color: #312b22; font-weight: var(--hob-fw-bold); }
.hob-btn--outline:hover, .hob-btn--ghost:hover, .hob-btn--outline:focus, .hob-btn--ghost:focus { background: #C6C4B2 !important; color: #312b22; }

/* Op donkere (espresso) achtergrond */
.hob-btn--on-dark { background: var(--hob-ivory); color: var(--hob-espresso); }
.hob-btn--on-dark:hover { background: var(--hob-gold); color: var(--hob-espresso); }

/* Hello Elementor's reset.css kleurt button:hover/:focus #c36 (roze). Neutraliseren
   voor icoon-/navigatieknoppen waar wij geen eigen knopkleur zetten. */
.hob-header button:hover, .hob-header button:focus,
.hob-footer button:hover, .hob-footer button:focus,
.hob-nav__toggle:hover, .hob-nav__toggle:focus,
.hob-nav__close:hover, .hob-nav__close:focus { background-color: transparent !important; }

/* Diezelfde reset zet button{border:1px solid #c36 !important} (roze). Globaal de
   rand verwijderen; knoppen die wél een rand willen (.hob-option, .hob-carousel-arrow)
   zetten 'm zelf met hogere specificiteit terug. */
button, [type="button"], [type="submit"], [type="reset"] { border: 0 !important; }

/* Dunne (light) weergave voor delen van koppen */
.hob-thin { font-weight: var(--hob-fw-thin); }

/* ---- Donkere sectie ---- */
.hob-section--dark { background: var(--hob-bg-dark); color: var(--hob-on-dark); }
.hob-section--dark h1, .hob-section--dark h2, .hob-section--dark h3 { color: var(--hob-on-dark); }

/* ---- Focus (toegankelijkheid) ---- */
:focus-visible { outline: 2px solid var(--hob-gold); outline-offset: 2px; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
