/*
 * Archetype: medical-clean
 * Medisch Schoon — Vertrouwenwekkende gezondheidszorg met moderne, minimalistische uitstraling.
 * Auto-generated door build-theme-archetype-css.php
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #0066CC;
    --primary-dark: color-mix(in srgb, #0066CC 85%, black);
    --primary-light: color-mix(in srgb, #0066CC 15%, white);
    --secondary: #00A3E0;
    --accent: #FF6B6B;
    --bg: #F8FAFB;
    --bg-alt: color-mix(in srgb, #F8FAFB 94%, #1A1A1A);
    --text: #1A1A1A;
    --text-dim: #757575;
    --dim: #374151;
    --muted: #757575;
    --radius: 8px;
    --radius-sm: calc(8px * 0.5);
    --radius-lg: calc(8px * 1.5);
    --shadow: 0 4px 12px rgba(0,0,0,.08);
    --font-heading: 'Poppins', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

body { background: var(--bg); color: var(--text); font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text); }
a { color: var(--primary); }

/* Buttons — .btn-primary keeps white text (nuclear rule) */
.btn-primary { color: #fff !important; background: var(--primary); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--bg-alt); color: var(--text); border-radius: var(--radius-sm); }

/* Cards + containers */
.card, .itw-card, section.widget { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Hero accent */
.hero-title, .itw-hero__title { color: var(--text); }
.hero-accent, .itw-hero__accent { color: var(--accent); }

