/* =============================================
   Paw Patrol Walks - Dog Walking Service
   Fresh Green Accent (#166534)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Playfair+Display:wght@700&amp;display=swap');

:root {
    --accent: #166534;
    --accent-dark: #14532d;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.1;
    tracking: -0.025em;
}

/* Hero */
.hero-text {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(22 101 52 / 0.15);
}

/* Form Styling */
input, textarea {
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.15);
}

/* Buttons */
.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #1f2937;
}

/* Mobile Improvements */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .hero-text {
        text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    }
}