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

/* Jansen Containers – eigen accenten (teal/groen, anders dan Van Pleg blauw) */
:root {
  --jc-primary: #0d9488;
  --jc-accent: #14b8a6;
  --jc-bg: #f0fdfa;
  --jc-dark: #134e4a;
  --jc-muted: #6b7280;
  --jc-radius: 14px;
  /* Aliases voor bestaande class-namen */
  --vp-blue: var(--jc-primary);
  --vp-lightblue: var(--jc-accent);
  --vp-bg: var(--jc-bg);
  --vp-dark: var(--jc-dark);
  --vp-muted: var(--jc-muted);
  --vp-radius: var(--jc-radius);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: var(--vp-bg);
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section,
.stripe {
  padding: 56px 0;
}

.section-alt {
  background: #ccfbf1;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 52px;
  max-width: 220px;
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 21;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: #374151;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
  background: #ccfbf1;
  color: var(--jc-primary);
}

/* Hero */

.hero {
  padding: 40px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 0.75rem;
  color: var(--vp-lightblue);
  font-weight: 600;
  margin-bottom: 6px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 10px;
  color: var(--vp-dark);
}

.hero-sub {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-bullets li {
  position: relative;
  padding-left: 18px;
  margin-top: 4px;
}

.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--vp-lightblue);
}

.hero-image img {
  width: 100%;
  border-radius: var(--vp-radius);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  object-fit: cover;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--jc-primary), #0f766e);
  color: #f9fafb;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: #ccfbf1;
  color: var(--jc-primary);
  border-color: #99f6e4;
}

.btn-secondary:hover {
  background: #99f6e4;
}

.btn-full {
  width: 100%;
}

/* Price section */

.stripe {
  background: white;
}

.stripe h2,
.section h2 {
  font-size: 1.6rem;
  margin: 0 0 10px;
  color: var(--vp-dark);
}

.section-intro {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 42rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  background: #f9fafb;
  border-radius: var(--vp-radius);
  padding: 16px 16px 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.card-sub {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--vp-muted);
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.price-card th,
.price-card td {
  padding: 4px 4px;
}

.price-card thead th {
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}

.price-card tbody tr:nth-child(odd) {
  background: #f3f4f6;
}

.price-card tbody td:last-child {
  text-align: right;
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 18px;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.step {
  background: white;
  border-radius: var(--vp-radius);
  border: 1px solid #e5e7eb;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--vp-lightblue);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

/* Over */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}

.about-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: #374151;
}

.about-highlight {
  background: white;
  border-radius: var(--vp-radius);
  padding: 16px 16px 14px;
  border: 1px solid #d1d5db;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
}

.about-highlight h3 {
  margin-top: 0;
}

.small {
  font-size: 0.8rem;
  color: #4b5563;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: 24px;
}

.contact-bullets {
  font-size: 0.9rem;
  color: #4b5563;
  padding-left: 18px;
}

.contact-form {
  background: white;
  border-radius: var(--vp-radius);
  border: 1px solid #e5e7eb;
  padding: 18px 16px 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}

.field {
  margin-bottom: 10px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 7px 9px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--vp-lightblue);
  outline-offset: 1px;
  border-color: var(--vp-lightblue);
}

/* Styling voor weekend/feestdag datums in date picker */
input[type="date"].weekend-holiday {
  border-color: #dc2626; /* red-600 */
  background-color: #fef2f2; /* red-50 */
}

input[type="date"].weekend-holiday:focus {
  border-color: #dc2626;
  outline-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Footer */

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: white;
  padding: 16px 0 18px;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-image {
    order: -1;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 20;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
  }
  
  .main-nav a:hover {
    background: #ccfbf1;
  }
  
  .section,
  .stripe {
    padding: 40px 0;
  }
  .contact-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
