/*
Theme Name: SDA Cleaning Premium Theme
Theme URI: https://sda-cleaning.nl
Author: SDA Cleaning B.V.
Author URI: https://sda-cleaning.nl
Description: A lightweight, fast, and modern multi-page WordPress theme for SDA Cleaning B.V. Built with a stunning dark green palette, responsive layouts, and multi-language translation readiness.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: sda-cleaning
*/

/* Custom styles and variables matching the premium dark emerald theme */
:root {
  --color-primary: #024d31;
  --color-primary-dark: #013421;
  --color-primary-light: #056642;
  --color-accent: #22c55e;
  --color-bg-light: #f4f6f5;
  --color-text-main: #1f2937;
  --color-text-muted: #4b5563;
}

/* Base custom resets & utility enhancements */
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-main);
  background-color: #ffffff;
}

.font-display {
  font-family: 'Outfit', 'Inter', sans-serif;
}

/* Custom transitions and scroll behaviors */
html {
  scroll-behavior: smooth;
}

/* Navigation menu styles for standard WordPress output */
.wp-primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-primary-menu li a {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

.wp-primary-menu li a:hover,
.wp-primary-menu li.current-menu-item a {
  color: var(--color-primary);
}

/* Custom form styles to ensure perfect aesthetic consistency */
.sda-form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #1f2937;
  font-size: 0.95rem;
  transition: all 0.2s ease-in-out;
}

.sda-form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 77, 49, 0.1);
}

/* Animation classes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cleaning Bubble and Sparkle Animations */
@keyframes floatBubble {
  0% {
    transform: translateY(100%) translateX(0px) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20%) translateX(15px) scale(1.2);
    opacity: 0;
  }
}

@keyframes floatSparkle {
  0%, 100% {
    transform: translate(0, 0) scale(0.6) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translate(15px, -15px) scale(1.1) rotate(180deg);
    opacity: 0.75;
  }
}

.animate-bubble-1 {
  animation: floatBubble 12s infinite linear;
}
.animate-bubble-2 {
  animation: floatBubble 16s infinite linear;
}
.animate-bubble-3 {
  animation: floatBubble 20s infinite linear;
}
.animate-bubble-4 {
  animation: floatBubble 14s infinite linear;
}
.animate-bubble-5 {
  animation: floatBubble 18s infinite linear;
}

.animate-sparkle-1 {
  animation: floatSparkle 6s infinite ease-in-out;
}
.animate-sparkle-2 {
  animation: floatSparkle 8s infinite ease-in-out;
}
.animate-sparkle-3 {
  animation: floatSparkle 7s infinite ease-in-out;
}




