/* BoerenBolus. Apple-inspired, professional, high-converting */

:root {
  --bg: #fbfbfd;
  --bg-section: #fff;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --green: #34c759;
  --whatsapp: #25d366;
  --border: #d2d2d7;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Language bar */
.lang-bar {
  background: #151618;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}

.lang-bar .container {
  display: flex;
  justify-content: flex-end;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 4px 10px;
  margin-left: 6px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
}

.lang-btn:hover,
.lang-btn.active {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Header */
.header {
  background: rgba(251, 251, 253, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-height: 40px;
}

.logo-img {
  height: 36px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--accent);
}

.cta-header {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner { flex-wrap: wrap; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 980px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 28px;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}

/* WhatsApp in hero: witte outline + witte tekst */
.btn-whatsapp-hero {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-whatsapp-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.whatsapp-icon {
  margin-right: 8px;
}

/* Hero met achtergrondafbeelding + 50% blauwe overlay */
.hero-with-image {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0.5;
}

.hero-with-image .hero-content {
  position: relative;
  z-index: 1;
}

.hero-with-image .hero-title,
.hero-with-image .hero-sub {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-with-image .hero-sub {
  color: rgba(255, 255, 255, 0.95);
}

/* Hero zonder afbeelding (fallback) */
.hero:not(.hero-with-image) {
  padding: 72px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%);
}

.hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section common */
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 40px;
  font-size: 18px;
}

/* Value section */
.value-section {
  padding: 64px 0;
  background: var(--bg);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--bg);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-icon {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

/* Video */
.video-section {
  padding: 64px 0;
  background: var(--bg);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Products: 4 in een rij met dropdown */
.products-section {
  padding: 64px 0;
  background: var(--bg-section);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .products-row {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 0 0 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 113, 227, 0.12);
}

.product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.product-card-body {
  padding: 0 24px;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.product-card .product-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-card .product-select-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}

.product-card select.product-size {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 12px;
  background: #fff;
  cursor: pointer;
}

.product-card select.product-size:focus {
  outline: none;
  border-color: var(--accent);
}

.product-card .product-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-card .btn {
  width: calc(100% - 48px);
  margin: 0 24px;
  text-align: center;
}

/* How it works */
.how-section {
  padding: 64px 0;
  background: var(--bg-section);
}

.how-body {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.how-body p {
  margin: 0 0 16px;
}

.how-body p:last-child {
  margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
  padding: 64px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  margin: 0;
  border-left: 4px solid var(--accent);
}

.testimonial p {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--text);
}

.testimonial cite {
  font-size: 14px;
  color: var(--text-muted);
  font-style: normal;
}

.testimonial-author {
  display: block;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-meta {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* Form */
.form-section {
  padding: 64px 0;
  background: var(--bg-section);
}

.inquiry-form {
  max-width: 560px;
  margin: 0 auto;
}

.inquiry-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 14px;
}

.inquiry-form label span {
  display: block;
  margin-bottom: 6px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.hidden {
  position: absolute;
  left: -9999px;
}

.inquiry-form button[type="submit"] {
  margin-top: 8px;
}

/* Blog */
.blog-section {
  padding: 64px 0;
  background: var(--bg);
}

.blog-teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-teaser {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-teaser h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.blog-teaser p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact */
.contact-section {
  padding: 64px 0;
  background: var(--bg-section);
  text-align: center;
}

.contact-section .btn-whatsapp {
  margin-top: 8px;
}

/* Footer: meer contrast, logo-ruimte, adresgegevens */
.footer {
  background: #151618;
  color: #fff;
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.footer-logo-area {
  flex: 0 0 200px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 40px;
  flex: 1;
  min-width: 0;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-logo-area { flex: 1 1 100%; }
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #fff;
}

.footer-col p,
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-address {
  font-style: normal;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.footer-address a {
  display: inline-block;
  margin-bottom: 2px;
}

.footer-kvk,
.footer-bank {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .credit {
  margin-top: 10px;
}

.footer-bottom .credit a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.footer-bottom .credit a:hover {
  text-decoration: underline;
}

/* WhatsApp float */
/* WhatsApp-knop + eendje: vast, verticaal gecentreerd aan rechterkant */
.whatsapp-float-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  pointer-events: none;
}

.whatsapp-float-wrap .whatsapp-float {
  pointer-events: auto;
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  background: #c41e3a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.5);
  border: 2px solid #fff;
}

.whatsapp-float {
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  color: #fff;
}

#year {
  font-weight: 500;
}
