/* Site Theme: dakgoten-dakreiniging.nl — "Fresh & hygienic" */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --theme-bg: #F8FBFF;
  --theme-bg-alt: #DBEAFE;
  --theme-text: #334155;
  --theme-text-light: #64748B;
  --theme-heading: #1E3A5F;
  --theme-accent: #0891B2;
  --theme-accent-hover: #0E7490;
  --theme-accent-light: #CFFAFE;
  --theme-mint: #A7F3D0;
  --theme-mint-dark: #34D399;
  --theme-card-bg: #FFFFFF;
  --theme-card-border: #E0EEFF;
  --theme-font-heading: 'Poppins', -apple-system, sans-serif;
  --theme-font-body: 'Poppins', -apple-system, sans-serif;
  --theme-radius: 0.75rem;
  --theme-radius-lg: 1rem;
  --theme-shadow: 0 2px 8px rgba(59, 130, 246, 0.06);
  --theme-shadow-hover: 0 8px 24px rgba(59, 130, 246, 0.12);
  --theme-transition: 0.3s ease;
}

body {
  font-family: var(--theme-font-body);
  background-color: var(--theme-bg);
  color: var(--theme-text);
  font-weight: 400;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-heading);
  color: var(--theme-heading);
  font-weight: 600;
  line-height: 1.25;
}

/* Hero — fresh blue with water droplet animation */
.hero-section {
  background: linear-gradient(180deg, #DBEAFE 0%, #93C5FD 50%, #60A5FA 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
}

.hero-section h1 {
  color: var(--theme-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

/* Water droplet animation */
.hero-section::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 20%;
  right: 15%;
  animation: dropFall 3s ease-in infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 10%;
  right: 30%;
  animation: dropFall 3s ease-in 1.5s infinite;
}

@keyframes dropFall {
  0% { transform: rotate(-45deg) translateY(0); opacity: 1; }
  70% { opacity: 0.5; }
  100% { transform: rotate(-45deg) translateY(200px); opacity: 0; }
}

/* Ripple effect on hero bottom */
@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Cards — clean fresh */
.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(-3px);
  border-color: var(--theme-accent-light);
}

/* Sections */
section:nth-child(even) {
  background: linear-gradient(180deg, var(--theme-bg) 0%, var(--theme-bg-alt) 50%, var(--theme-bg) 100%);
}

/* Buttons — fresh blue */
.btn-primary,
button[type="submit"],
.cta-button {
  background: linear-gradient(135deg, var(--theme-accent), var(--theme-accent-hover)) !important;
  color: #fff !important;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  transition: all var(--theme-transition);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Mint green accent badges */
.badge, .tag {
  background-color: var(--theme-mint);
  color: #065F46;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Before/After slider concept bars */
.stat-number,
.text-3xl.font-bold,
.text-4xl.font-bold {
  color: var(--theme-accent);
  font-weight: 700;
}

/* Clean transition dividers */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-mint), var(--theme-accent-light), var(--theme-mint));
  margin: 2rem 0;
}

/* 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-accent-hover);
}

/* Form inputs */
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-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  outline: none;
}

/* 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.75rem; }
  .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;
}

