/* 
  w_4.css — Weatherby Lake Lawn site styles
  Follows project structure in agents.md
*/

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

:root {
    --green: #166534;
    --lake: #0c4a6e;
}

.tail-container * {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Playfair Display', sans-serif;
}

.hero-bg {
    background-image: url('https://trailcutter.services/public/trailcutter-client-green-lawn.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #166534;
    transform: translateY(-1px);
}

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

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

.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #166534;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 9999px;
}
