/* Site Theme: woonverzekering-brand-diefstal.nl — "Calm protection" */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --theme-bg: #F8FAFC;
  --theme-bg-alt: #F1F5F9;
  --theme-text: #475569;
  --theme-text-light: #64748B;
  --theme-heading: #1E293B;
  --theme-accent: #7C3AED;
  --theme-accent-hover: #6D28D9;
  --theme-accent-light: #EDE9FE;
  --theme-green: #22C55E;
  --theme-green-hover: #16A34A;
  --theme-green-light: #DCFCE7;
  --theme-pearl: #E2E8F0;
  --theme-card-bg: #FFFFFF;
  --theme-card-border: #E2E8F0;
  --theme-font-heading: 'Work Sans', -apple-system, sans-serif;
  --theme-font-body: 'Work Sans', -apple-system, sans-serif;
  --theme-radius: 0.75rem;
  --theme-radius-lg: 1rem;
  --theme-shadow: 0 1px 3px rgba(30, 41, 59, 0.04);
  --theme-shadow-hover: 0 4px 16px rgba(30, 41, 59, 0.08);
  --theme-transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
  font-family: var(--theme-font-body);
  background-color: var(--theme-bg);
  color: var(--theme-text);
  font-weight: 400;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-heading);
  color: var(--theme-heading);
  font-weight: 600;
  line-height: 1.25;
}

/* Hero — calm gradient minimalist */
.hero-section {
  background: linear-gradient(180deg, #E2E8F0 0%, #CBD5E1 40%, #94A3B8 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
}

.hero-section h1 {
  color: var(--theme-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-section p {
  color: var(--theme-text);
}

/* Protective shield pulse — green */
@keyframes protectPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--theme-green-light);
  border: 2px solid var(--theme-green);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: protectPulse 3s ease-in-out infinite;
  opacity: 0.6;
}

/* Gentle fade-in animations */
@keyframes gentleFadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.card {
  animation: gentleFadeIn 0.6s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Cards — clean calm */
.card,
.bg-white.rounded-lg,
[class*="shadow"] {
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-card-border);
  border-radius: var(--theme-radius-lg);
  box-shadow: var(--theme-shadow);
  transition: all var(--theme-transition);
}

.card:hover,
.bg-white.rounded-lg:hover {
  box-shadow: var(--theme-shadow-hover);
  transform: translateY(-2px);
  border-color: var(--theme-green-light);
}

/* Sections */
section:nth-child(even) {
  background-color: var(--theme-bg-alt);
}

/* Buttons — night blue with green check accent */
.btn-primary,
button[type="submit"],
.cta-button {
  background-color: var(--theme-accent) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--theme-radius);
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all var(--theme-transition);
  box-shadow: 0 1px 4px rgba(30, 41, 59, 0.12);
}

.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover {
  background-color: var(--theme-accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.18);
}

/* Safety green accents */
.badge, .tag, .status-badge {
  background-color: var(--theme-green-light);
  color: var(--theme-green-hover);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Stat numbers */
.stat-number,
.text-3xl.font-bold,
.text-4xl.font-bold {
  color: var(--theme-green);
  font-weight: 700;
}

/* Links */
a:not(.btn-primary):not([class*="bg-"]) {
  color: var(--theme-accent);
  transition: color var(--theme-transition);
}

a:not(.btn-primary):not([class*="bg-"]):hover {
  color: var(--theme-green-hover);
}

/* Form inputs — clean */
input, select, textarea {
  border: 1px solid var(--theme-card-border);
  border-radius: var(--theme-radius);
  transition: all var(--theme-transition);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--theme-green);
  box-shadow: 0 0 0 3px var(--theme-green-light);
  outline: none;
}

/* Dividers */
hr {
  border: none;
  height: 1px;
  background: var(--theme-pearl);
  margin: 2rem 0;
}

/* h2 with green checkmark-like underline */
h2 {
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--theme-green);
  margin-top: 0.5rem;
  border-radius: 1px;
}

/* Footer */
footer {
  background-color: var(--theme-heading) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-section { padding: 3rem 1rem; }
  .hero-section h1 { font-size: 1.875rem; }
  .hero-section::before { display: none; }
  .card:hover { transform: none; }
}

@media (min-width: 1024px) {
  .hero-section { padding: 6rem 2rem; }
  .hero-section h1 { font-size: 3rem; }
}


/* === Nav & Template Color Harmonization === */
nav a[href="#devis-form"] {
  background-color: var(--theme-accent) !important;
  color: #fff !important;
  border-color: var(--theme-accent) !important;
}
nav a[href="#devis-form"]:hover {
  background-color: var(--theme-accent-hover) !important;
  border-color: var(--theme-accent-hover) !important;
}

