/* De Eetkamer Wernhout — landing page styles */

:root {
  --color-bg: #faf7f2;
  --color-bg-dark: #2c1810;
  --color-primary: #8b3a2a;
  --color-primary-dark: #6b2a1e;
  --color-accent: #c9a227;
  --color-text: #3d2f28;
  --color-text-muted: #6b5d54;
  --color-white: #ffffff;
  --color-border: #e8dfd4;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 8px 32px rgba(44, 24, 16, 0.12);
  --radius: 8px;
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-bg-dark);
}

.logo-mark {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-bg-dark);
  transition: transform 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.btn-dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* Hero */

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(44, 24, 16, 0.78) 0%, rgba(139, 58, 42, 0.55) 100%),
    url("/img/hero.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 5rem 0;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
}

.hero-subtitle {
  margin: 0 0 2rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */

section {
  padding: 5rem 0;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-bg-dark);
}

/* About */

.about {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-text h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-bg-dark);
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-meta dt {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.about-meta dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
}

/* Content */

.content-section {
  background: var(--color-bg);
}

.content-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

.content-body h3 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--color-bg-dark);
}

.content-body h3:first-child {
  margin-top: 0;
}

.content-body p {
  margin: 0 0 1rem;
}

.content-sidebar figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.content-sidebar img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.content-sidebar figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  background: var(--color-white);
}

/* Tables */

.tables-section {
  background: var(--color-white);
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.table-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
}

.table-card h3 {
  margin: 0;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.data-table th {
  width: 40%;
  font-weight: 600;
  color: var(--color-text-muted);
  background: rgba(44, 24, 16, 0.04);
}

.data-table tr:last-child td,
.data-table tr:last-child th {
  border-bottom: none;
}

/* Benefits */

.benefits {
  background:
    linear-gradient(180deg, var(--color-bg) 0%, #f0e8dc 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-accent);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(139, 58, 42, 0.1);
  font-size: 1.4rem;
}

.benefit-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-bg-dark);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.benefits-image {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.benefits-image img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.benefits-image figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: var(--color-white);
}

/* FAQ */

.faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.25rem;
  padding-right: 2rem;
  color: var(--color-text-muted);
}

/* Afhaalmenu */

.afhaal {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.afhaal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.afhaal h2 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
}

.afhaal p {
  color: rgba(255, 255, 255, 0.85);
}

.afhaal-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.afhaal-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.afhaal-image figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.25);
}

/* Footer */

.site-footer {
  background: #1a100c;
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-cta {
    display: none;
  }

  .about-grid,
  .content-layout,
  .afhaal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-meta {
    grid-template-columns: 1fr;
  }
}
