/* Thisdomaindontexist123.ddd — Business vitamin info site */
:root {
  --accent: #FCA600;
  --accent-dark: #d48a00;
  --bg-dark: #1a2332;
  --bg-mid: #243044;
  --bg-light: #f4f6f9;
  --text-dark: #1a2332;
  --text-light: #f8fafc;
  --text-muted: #5a6478;
  --border: #dde2ea;
  --shadow: 0 8px 32px rgba(26, 35, 50, 0.12);
  --radius: 8px;
  --max: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-link img {
  height: 48px;
  width: 48px;
  display: block;
}

.nav-toggle {
  display: none;
  background: var(--bg-dark);
  color: var(--text-light);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* Disclaimer bar */
.disclaimer-bar {
  background: var(--bg-mid);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.45;
}

.trust-notice {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff8e8;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  color: #000000;
}

.trust-notice i {
  font-size: 1.75rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.trust-notice p {
  margin: 0;
  color: #000000;
}

.trust-notice a {
  color: var(--accent-dark);
  font-weight: 600;
}

.section-dark .trust-notice {
  background: rgba(252, 166, 0, 0.15);
}

.section-dark .trust-notice p {
  color: #f8fafc;
}

.footer-legal-note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #94a3b8;
}

.business-details {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.7;
}

.business-details strong {
  color: var(--text-dark);
}

.business-details .business-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Hero collage */
.hero-collage {
  position: relative;
  min-height: 480px;
  background-color: var(--bg-dark);
  background-image: url("../image/picture1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 1.25rem;
  max-width: 100%;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 35, 50, 0.92) 0%,
    rgba(26, 35, 50, 0.78) 45%,
    rgba(26, 35, 50, 0.55) 100%
  );
  z-index: 0;
}

.hero-collage .hero-text {
  padding: 0;
  max-width: var(--max);
  margin: 0;
  width: 100%;
  z-index: 2;
  position: relative;
}

.hero-collage h1 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-collage .lead {
  color: #e2e8f0;
  font-size: 1.05rem;
  max-width: 640px;
}

.hero-fragment {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.hero-fragment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-fragment--accent {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-fragment--accent .stat-block {
  color: var(--bg-dark);
  text-align: center;
}

.hero-fragment--accent .stat-block i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-fragment--collage {
  position: relative;
  z-index: 2;
  transform: rotate(3deg);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-height: auto;
  align-self: end;
  margin-bottom: 0.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 60%, var(--bg-mid));
  color: var(--text-light);
  padding: 2.5rem 0;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #cbd5e1;
  max-width: 720px;
}

.page-hero-img {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  max-height: 220px;
  width: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 3rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p,
.section-dark li {
  color: #e2e8f0;
}

.section-accent {
  background: var(--accent);
  color: var(--bg-dark);
}

.section-accent h2,
.section-accent h3 {
  color: var(--bg-dark);
}

.section-mid {
  background: var(--bg-mid);
  color: var(--text-light);
}

.section-mid h2 {
  color: var(--text-light);
}

.section-light {
  background: #fff;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
}

.section-dark h2 i,
.section-mid h2 i {
  color: var(--accent);
  margin-right: 0.35rem;
  vertical-align: middle;
}

/* Grids & blocks */
.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.section-dark .card {
  background: var(--bg-mid);
  border-left-color: var(--accent);
  color: var(--text-light);
}

.section-dark .card p {
  color: #e2e8f0;
}

.card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.info-list {
  list-style: none;
  margin: 1rem 0;
}

.info-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-list li i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .info-list li {
  border-color: rgba(255, 255, 255, 0.15);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px dashed var(--border);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.data-table th {
  background: var(--bg-dark);
  color: var(--text-light);
}

.data-table tr:nth-child(even) {
  background: #f0f3f8;
}

.section-dark .data-table th {
  background: var(--accent);
  color: var(--bg-dark);
}

.section-dark .data-table td {
  border-color: rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
}

.section-dark .data-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.15);
}

/* Image section */
.media-block {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.media-block.reverse {
  direction: rtl;
}

.media-block.reverse > * {
  direction: ltr;
}

.media-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.media-block img.media-img-full {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

/* FAQ */
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
  color: #000000;
}

.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
}

.faq-list summary i {
  color: var(--accent-dark);
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-list .faq-answer {
  padding: 1rem 1.25rem;
  color: #000000;
}

.section-dark .faq-list details,
.section-mid .faq-list details {
  background: #fff;
  border-color: var(--border);
  color: #000000;
}

.section-dark .faq-list summary,
.section-mid .faq-list summary,
.section-dark .faq-list .faq-answer,
.section-mid .faq-list .faq-answer {
  color: #000000;
}

/* Events calendar */
.events-grid {
  display: grid;
  gap: 1rem;
  color: #000000;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  color: #000000;
}

.event-card h3,
.event-card p {
  color: #000000;
}

.section-dark .event-card,
.section-mid .event-card {
  background: #fff;
  border-left-color: var(--accent);
  color: #000000;
}

.section-dark .event-card h3,
.section-dark .event-card p,
.section-mid .event-card h3,
.section-mid .event-card p {
  color: #000000;
}

.event-date {
  background: var(--bg-dark);
  color: var(--accent);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  min-width: 70px;
}

.event-date span {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
}

/* Interactive planner (antioxidanten) */
.section-interactive .container {
  color: #000000;
}

.section-interactive .container p {
  color: #000000;
}

.interactive-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #000000;
}

.planner-progress-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
}

.planner-progress-track {
  height: 14px;
  background: #e8ecf2;
  border-radius: 999px;
  overflow: hidden;
}

.planner-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.planner-status {
  margin: 0.75rem 0 1.25rem;
  font-size: 0.95rem;
  color: #000000;
}

.food-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.food-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #f8fafc;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.food-chip i {
  font-size: 1.5rem;
  color: var(--accent-dark);
}

.food-chip span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
}

.food-chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.food-chip.is-active {
  border-color: var(--accent-dark);
  background: rgba(252, 166, 0, 0.2);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.planner-selected-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  min-height: 1.5rem;
  color: #000000;
}

.planner-selected-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}

.planner-reset {
  margin-top: 0.25rem;
}

@media (max-width: 320px) {
  .food-chip-grid {
    grid-template-columns: 1fr;
  }
}

/* Health guidelines */
.guideline-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(252, 166, 0, 0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.guideline-box i {
  font-size: 1.75rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.section-dark .guideline-box {
  background: rgba(252, 166, 0, 0.15);
  border-color: var(--accent);
}

.section-dark .guideline-box p {
  color: #e2e8f0;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.checkbox-row input {
  margin-top: 0.25rem;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text-light);
}

.section-light .btn-outline {
  color: var(--bg-dark);
}

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer a {
  color: #cbd5e1;
  display: block;
  padding: 0.25rem 0;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

/* Cookie banner — Telecommunicatiewet / ACM */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  padding: 1.25rem 1rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-banner-title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.cookie-banner p,
.cookie-settings-intro {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--accent-dark);
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.cookie-actions .btn {
  font-size: 0.9rem;
  padding: 0.65rem 1.1rem;
  min-height: 44px;
  flex: 1 1 auto;
  justify-content: center;
}

.cookie-actions .btn-reject {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 2px solid var(--bg-dark);
  order: 1;
}

.cookie-btn-settings {
  color: var(--text-dark) !important;
  border: 2px solid var(--bg-dark) !important;
  background: #fff !important;
  order: 2;
}

.cookie-actions .btn:last-child {
  order: 3;
}

.cookie-btn-save {
  margin-top: 0.75rem;
}

.footer-odr {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.footer-odr a {
  color: #cbd5e1;
  text-decoration: underline;
}

.footer-odr a:hover {
  color: var(--accent);
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-settings.is-open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle label {
  font-weight: 500;
}

.cookie-toggle input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--accent);
}

.cookie-toggle.disabled {
  opacity: 0.7;
}

/* Success page */
.success-box {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.success-box i {
  font-size: 4rem;
  color: var(--accent);
}

.success-box h1 {
  margin: 1rem 0;
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.policy-content ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy-content .data-table {
  font-size: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.policy-content .data-table th,
.policy-content .data-table td {
  color: #000000;
}

.policy-content code {
  background: #f0f3f8;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: #000000;
}

.policy-content a {
  color: var(--accent-dark);
}

/* Tag pills */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--bg-dark);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
    box-shadow: var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-collage {
    grid-template-columns: 1fr;
    min-height: 420px;
    padding: 2rem 1.25rem;
  }

  .hero-fragment--collage {
    transform: none;
    justify-self: start;
    max-width: 280px;
  }

  .media-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .media-block.reverse {
    direction: ltr;
  }

  section {
    padding: 2rem 0;
  }
}

@media (max-width: 320px) {
  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
    flex: 1 1 100%;
  }

  .cookie-banner-title {
    font-size: 1rem;
  }
}
