/*
Theme Name: MaakJeBevalPlan Exact HTML
Theme URI: https://maakjebevalplan.nl/
Author: OpenAI
Version: 1.0
Description: WordPress theme built directly from the uploaded landing page HTML.
Text Domain: maakjebevalplan-exact-html-theme
*/

:root {
  --bg: #f7f1ed;
  --bg-soft: #fbf7f4;
  --text: #6d5a55;
  --text-dark: #4d3f3b;
  --accent: #a7c6bf;
  --accent-dark: #8eb2aa;
  --rose: #efc5bc;
  --line: #eadfd8;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(109, 90, 85, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.6;
}

body.admin-bar .topbar {
  top: 32px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 223, 216, 0.9);
  padding: 8px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Beste setting voor breed logo */
.logo-main {
  width: 400px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 15px;
}

.menu a:hover {
  color: var(--text-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(167, 198, 191, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 52px 0 34px;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, #faf5f1 0%, #f8f1ec 100%);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(239, 197, 188, 0.35), rgba(239, 197, 188, 0));
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff8f6;
  border: 1px solid var(--line);
  color: #8d756f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 24px;
}

.hero p {
  font-size: clamp(18px, 2vw, 22px);
  max-width: 640px;
  margin: 0 0 22px;
  color: #7f716d;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-point {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  color: #7d6f6a;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 470px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

section {
  padding: 38px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 26px;
}

.section-title p {
  margin: 0;
  font-size: 18px;
  color: #7f716d;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #f8efea;
  margin-bottom: 16px;
  font-size: 26px;
}

.card p,
.step p,
.price-card p,
.faq-item p {
  margin: 0;
  color: #7d6f6a;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step {
  position: relative;
  padding: 34px 28px 28px;
  background: linear-gradient(180deg, #fff 0%, #fbf6f2 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 18px;
}

.pricing-single {
  display: flex;
  justify-content: center;
}

.single-plan {
  width: 100%;
  max-width: 560px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(167, 198, 191, 0.9);
  background: linear-gradient(180deg, #fcfffe 0%, #f4faf8 100%);
}

.badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef7f4;
  color: #6b958c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.price {
  font-size: 48px;
  line-height: 1;
  color: var(--text-dark);
  margin: 12px 0;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: #746663;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.panel {
  background: linear-gradient(180deg, #fff 0%, #fbf5f0 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.quote {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.faq {
  display: grid;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.cta {
  padding-bottom: 70px;
}

.cta-box {
  background: linear-gradient(135deg, #f2ddd6 0%, #f8f2ee 42%, #eef7f4 100%);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  box-shadow: var(--shadow);
}

footer {
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  color: #8b7d79;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 782px) {
  body.admin-bar .topbar {
    top: 46px;
  }
}

@media (max-width: 1100px) {
  .logo-main {
    width: 220px;
  }
}

@media (max-width: 980px) {
  .hero-wrap,
  .split,
  .grid-3,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .menu {
    display: none;
  }

  .mini-points {
    grid-template-columns: 1fr;
  }

  .logo-main {
    width: 220px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .nav {
    padding: 8px 0;
  }

  .logo-main {
    width: 180px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-wrap {
    border-radius: 26px;
    padding: 22px;
  }

  .card,
  .step,
  .price-card,
  .panel,
  .faq-item {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
