/* Custom CSS for Shawn's Lawn Service */

/* Hero Section Styling */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1500x800?text=Beautiful+Lawn+Background') no-repeat center center/cover;
    min-height: 60vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* General Section Padding */
section {
    padding: 60px 0;
}

/* Card Styling for Services */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

/* Portfolio Image Styling */
.card-img-top {
    height: 200px; /* Uniform height for portfolio images */
    object-fit: cover; /* Ensures images cover the area without distortion */
}

/* Contact Form Styling */
.form-label {
    font-weight: bold;
}