/*
Theme Name: Colorado Springs Lawn Care
Description: Custom WordPress theme for Colorado Springs Lawn Care & Landscaping Services. Professional, modern design with responsive layout optimized for lawn care and landscaping businesses.
Author: Colorado Springs Lawn Care
Version: 1.0.0
Text Domain: colorado-lawn-care
Tags: lawn-care, landscaping, business, responsive, modern, green
*/

/* Import Tailwind CSS */
@import 'assets/css/tailwind.css';

/* Custom CSS Variables */
:root {
  --primary-color: hsl(142, 69%, 58%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary-color: hsl(24, 33%, 43%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --accent-color: hsl(217, 91%, 60%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 3.9%);
  --muted: hsl(0, 0%, 96.1%);
  --muted-foreground: hsl(0, 0%, 45.1%);
  --border: hsl(0, 0%, 89.8%);
  --radius: 0.5rem;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  margin: 0;
  padding: 0;
}

/* WordPress specific styles */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Custom Animations */
.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(139, 90, 60, 0.8) 100%);
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom styles */
.wp-site-blocks {
    padding-top: 80px;
    position: relative;
}
h1 {
    font-size: 3rem !important;
    line-height: 1 !important;
}

h2 {    
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}
h3 {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}
h4 {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}
