/*
Theme Name: Martin's Lawn Modern
Theme URI: https://example.com
Author: Grok for Jeffrey
Description: Super modern, W3C compliant WordPress theme inspired by Martin's Lawn Detail logo. Clean, professional, green & orange accents.
Version: 1.0
*/

:root {
    --primary-green: #228B22;
    --accent-orange: #FF8C00;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    color: #333;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/id/1015/1920/1080'); /* ← Replace this URL with your own lawn photo */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.logo {
    font-size: 4.8rem;
    font-weight: 800;
    text-shadow: 0 5px 25px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.cta-button {
    background: var(--accent-orange);
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 15px;
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.35);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 20px;
}