/*
Theme Name: Speek Bedden
Theme URI: https://speekbedden.nl
Author: Speek Bedden
Version: 1.0
Text Domain: speek-bedden
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf8f5;
  --fg: #141414;
  --card: #ffffff;
  --secondary: #f0ede8;
  --muted: #666666;
  --accent: #f97316;
  --accent-fg: #ffffff;
  --border: #e0ddd6;
  --whatsapp: #25d366;
  --whatsapp-fg: #ffffff;
  --radius: 0.5rem;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER ===== */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 40; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; padding-bottom: 1.25rem; }
.site-header .logo img { height: 40px; }
.site-header nav { display: flex; align-items: center; gap: 2rem; }
.site-header nav a { color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.site-header nav a:hover { color: #fff; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--whatsapp); color: var(--whatsapp-fg); font-weight: 700; padding: 0.625rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; transition: opacity 0.2s; }
.btn-whatsapp:hover { opacity: 0.9; }

/* Mobile menu */
.mobile-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }
.mobile-nav { display: none; background: rgba(20,20,20,0.95); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.active { display: block; }
.mobile-nav .container { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { color: rgba(255,255,255,0.8); font-weight: 500; padding: 0.5rem 0; transition: color 0.2s; }
.mobile-nav a:hover { color: #fff; }

@media (max-width: 768px) {
  .site-header nav.desktop-nav { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-content { position: relative; z-index: 10; padding: 5rem 0; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; line-height: 1.15; margin-bottom: 1.5rem; max-width: 640px; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 520px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-accent { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: var(--accent-fg); font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius); font-size: 1.125rem; transition: opacity 0.2s; border: none; cursor: pointer; }
.btn-accent:hover { opacity: 0.9; }
.btn-whatsapp-lg { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--whatsapp); color: var(--whatsapp-fg); font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius); font-size: 1.125rem; transition: opacity 0.2s; }
.btn-whatsapp-lg:hover { opacity: 0.9; }

/* ===== PROBLEM SECTION ===== */
.problem-section { padding: 5rem 0; background: var(--bg); }
.problem-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 4rem; text-wrap: balance; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { border-radius: 0.75rem; padding: 2rem; }
.problem-card.traditional { background: var(--secondary); }
.problem-card.speek { background: var(--fg); color: #fff; }
.problem-card h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.problem-card ul { display: flex; flex-direction: column; gap: 1rem; }
.problem-card li { display: flex; align-items: flex-start; gap: 0.75rem; }
.problem-card li .icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.icon-x { color: #ef4444; }
.icon-check { color: var(--accent); }
.problem-card.speek li span { color: rgba(255,255,255,0.85); }
.problem-card.traditional li span { color: var(--muted); }

/* ===== PRODUCTS ===== */
.products-section { padding: 5rem 0; background: var(--secondary); }
.products-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 0.5rem; }
.products-section > .container > p { text-align: center; color: var(--muted); margin-bottom: 3rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr; } }
.product-card { background: var(--card); border-radius: 0.75rem; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: box-shadow 0.2s; }
.product-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 256px; object-fit: cover; }
.product-card .info { padding: 1.5rem; }
.product-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.product-card .price { color: var(--accent); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; }
.product-card .benefit { color: var(--muted); font-size: 0.875rem; margin-bottom: 1rem; }
.product-card .link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.875rem; transition: color 0.2s; }
.product-card .link:hover { color: var(--accent); }

/* ===== TRUST / REVIEWS ===== */
.trust-section { padding: 5rem 0; background: var(--bg); }
.trust-section .subtitle { color: var(--accent); font-weight: 700; font-size: 1.125rem; text-align: center; margin-bottom: 0.5rem; }
.trust-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 20px; height: 20px; fill: var(--accent); color: var(--accent); }
.review-card .text { font-style: italic; margin-bottom: 1rem; }
.review-card .name { font-weight: 700; font-size: 0.875rem; }
.review-card .location { color: var(--muted); font-size: 0.875rem; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 5rem 0; background: var(--fg); }
.how-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; color: #fff; margin-bottom: 4rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step .icon-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(249,115,22,0.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step .icon-circle svg { width: 28px; height: 28px; color: var(--accent); }
.step .step-num { color: var(--accent); font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.step h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ===== USP ===== */
.usp-section { padding: 5rem 0; background: var(--bg); }
.usp-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 4rem; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-item { display: flex; gap: 1rem; }
.usp-item .icon-box { width: 48px; height: 48px; border-radius: var(--radius); background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usp-item .icon-box svg { width: 24px; height: 24px; color: var(--accent); }
.usp-item h3 { font-weight: 700; font-family: 'DM Sans', sans-serif; margin-bottom: 0.25rem; font-size: 1rem; }
.usp-item p { color: var(--muted); font-size: 0.875rem; }

/* ===== CTA ===== */
.cta-section { padding: 5rem 0; background: var(--accent); }
.cta-section .container { text-align: center; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); color: var(--accent-fg); margin-bottom: 1rem; }
.cta-section > .container > p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-dark { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--fg); color: #fff; font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius); font-size: 1.125rem; transition: opacity 0.2s; }
.btn-dark:hover { opacity: 0.9; }

/* ===== FAQ ===== */
.faq-section { padding: 5rem 0; background: var(--secondary); }
.faq-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 1.25rem 0; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--muted); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 0 1.25rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact-section { padding: 5rem 0; background: var(--bg); }
.contact-section h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); text-align: center; margin-bottom: 3rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item svg { width: 20px; height: 20px; color: var(--accent); margin-top: 4px; flex-shrink: 0; }
.contact-item .whatsapp-icon { color: var(--whatsapp); }
.contact-item .label { font-weight: 700; }
.contact-item .value { color: var(--muted); }
.contact-item a.value:hover { color: var(--accent); }
.contact-form { background: var(--secondary); border-radius: 0.75rem; padding: 2rem; }
.contact-form h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-form label { display: block; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); color: var(--fg); font-family: inherit; font-size: 1rem; margin-bottom: 1rem; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 2px var(--accent); }
.contact-form .btn-submit { width: 100%; background: var(--accent); color: var(--accent-fg); font-weight: 700; padding: 1rem; border-radius: var(--radius); font-size: 1.125rem; border: none; cursor: pointer; transition: opacity 0.2s; }
.contact-form .btn-submit:hover { opacity: 0.9; }

/* Algemene styling voor alle inputvelden */
.contact-form input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 48px; /* vaste hoogte voor consistentie */
    background-color: #fff;
}

/* Verwijder standaard mobiele UI van datum en tijd */
.contact-form input[type="date"],
.contact-form input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    height: 48px; /* zelfde hoogte als andere velden */
    padding-left: 12px;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--fg); padding: 2.5rem 0; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.social-links { display: flex; align-items: center; gap: 1rem; }
.social-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.social-links a:hover { color: #fff; }
.social-links svg { width: 20px; height: 20px; }
.site-footer .logo img { height: 32px; }
.site-footer .copyright { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* ===== STICKY WHATSAPP ===== */
.sticky-whatsapp { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; background: var(--whatsapp); color: var(--whatsapp-fg); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.2s; }
.sticky-whatsapp:hover { transform: scale(1.1); }
.sticky-whatsapp svg { width: 28px; height: 28px; }

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }
