/* Zussenhoning - styling */

:root {
  --honey-light: #F5D78A;
  --honey: #E1A93F;
  --honey-dark: #B07A1E;
  --honey-deep: #6B4A12;
  --green: #4A7C59;
  --green-dark: #2F5A3D;
  --cream: #FFF9EE;
  --paper: #FFFDF8;
  --ink: #2B1F14;
  --ink-soft: #6B5A4A;
  --line: #E8DCC5;
  --shadow: 0 4px 24px rgba(107, 74, 18, 0.08);
  --shadow-strong: 0 8px 32px rgba(107, 74, 18, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Iowan Old Style', 'Palatino Linotype', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--honey-dark); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
a:hover { border-bottom-color: var(--honey-dark); }

h1, h2, h3 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--honey-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--green-dark); }

p { margin-bottom: 1rem; }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 248, 0.92);
}
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--honey-deep);
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo:hover { border: none; }
.logo-bee { font-size: 1.5rem; }

.nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink);
  font-family: 'Helvetica Neue', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.nav a:hover, .nav a.active { border-bottom-color: var(--honey); color: var(--honey-deep); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--honey-deep); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey) 100%);
  padding: 3.5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 100%, 0 0);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-text { }
.hero h1 { color: var(--honey-deep); margin-bottom: 1rem; }
.hero .tagline {
  font-style: italic;
  color: var(--honey-deep);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.hero p { font-size: 1.1rem; color: var(--honey-deep); margin-bottom: 1.75rem; }
.hero-illustration {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  display: block;
  background: var(--paper);
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--honey-deep);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); border: none; background: var(--ink); color: var(--cream); }
.btn-secondary { background: transparent; color: var(--honey-deep); border: 2px solid var(--honey-deep); box-shadow: none; }
.btn-secondary:hover { background: var(--honey-deep); color: var(--cream); }

/* Main content */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.page-title { text-align: center; margin-bottom: 3rem; }
.page-title h1 { margin-bottom: 0.5rem; }
.page-title .subtitle { color: var(--ink-soft); font-style: italic; }

.section { margin-bottom: 3rem; }

.callout {
  background: var(--paper);
  border-left: 4px solid var(--honey);
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}
.callout h3 { margin-top: 0; }

/* Honey types grid */
.honey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.honey-card {
  background: var(--paper);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--honey);
}
.honey-card h3 { margin-top: 0; color: var(--honey-deep); }
.honey-card .when {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 0.75rem;
}

/* Features list */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.feature {
  padding: 1.25rem;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.feature-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.feature h3 { margin-top: 0; font-size: 1.1rem; }
.feature p { margin-bottom: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* Webshop / products */
.product-list { margin: 2rem 0; }
.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.product:last-child { border-bottom: none; }
.product-info h3 { margin: 0 0 0.25rem; font-size: 1.15rem; color: var(--honey-deep); }
.product-info .desc { font-size: 0.95rem; color: var(--ink-soft); }
.product-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--honey-deep);
  white-space: nowrap;
}
.product-status {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
}
.product-status.empty { color: #B85A45; }

.shop-note {
  background: var(--honey-light);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
  color: var(--honey-deep);
}

/* Content images — natuurlijke verhouding, gecentreerd, nette maximale hoogte */
.content-photo,
figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 540px;
  margin-inline: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
figure { margin: 2.5rem 0; }
figure figcaption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  margin-top: 0.6rem;
}

/* Full-width atmospheric strip (landschapsfoto) */
.photo-strip {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center 30%;
  margin: 3rem 0 0;
  display: flex;
  align-items: flex-end;
}
.photo-strip .strip-caption {
  width: 100%;
  background: linear-gradient(transparent, rgba(43, 31, 20, 0.75));
  color: var(--cream);
  padding: 2.5rem 1.5rem 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}

/* Beeld bovenaan een pagina — natuurlijke verhouding, gecentreerd */
.page-banner {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 460px;
  margin: 0 auto 2.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.site-footer h3 { color: var(--honey-light); font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer p, .site-footer a { color: var(--cream); font-size: 0.95rem; }
.site-footer a { border-bottom: 1px solid rgba(255, 249, 238, 0.3); }
.site-footer a:hover { border-bottom-color: var(--honey-light); color: var(--honey-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 249, 238, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 249, 238, 0.6);
  text-align: center;
}

/* Anecdote / story */
.anecdote {
  background: var(--paper);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  position: relative;
}
.anecdote::before {
  content: '"';
  font-family: 'Georgia', serif;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--honey);
  line-height: 1;
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav { display: none; flex-direction: column; gap: 0.5rem; width: 100%; padding-top: 0.5rem; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header .inner { flex-wrap: wrap; }
  .hero { padding: 2.5rem 1rem 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero-illustration { max-width: 380px; margin: 0 auto; }
  .photo-strip { height: 260px; }
  .page-banner, figure img, .content-photo { max-height: 70vh; }
  .footer-inner { grid-template-columns: 1fr; }
  .product { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
