/* Basic Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif; /* Lato for body text */
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #2E8B57; /* Sea Green */
    color: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #6B8E23; /* Olive Drab */
}

header h1 {
    float: left;
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif; /* Merriweather for the main site title */
    font-size: 2.5em; /* Adjust size if needed, e.g., 2.8em or 3em */
    color: #fff;
    font-weight: 700; /* Merriweather 700 weight is usually bold */
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    list-style: none;
}

header ul li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Lato', sans-serif; /* Lato for navigation links */
}

header a:hover {
    color: #DAF7A6; /* Light Green */
}

/* Main Content Styling */
main {
    padding-bottom: 30px;
}

section {
    padding: 40px 0;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2, section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #2E8B57; /* Sea Green */
    font-family: 'Montserrat', sans-serif; /* Montserrat for main section headings */
}

/* Hero Section (Homepage Specific) */
#hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover; /* Replace with your hero image */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    height: 450px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none; /* Remove shadow for hero */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

#hero h2 {
    color: #fff;
    font-size: 3.5em;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif; /* Montserrat for hero heading */
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #6B8E23; /* Olive Drab */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-family: 'Lato', sans-serif; /* Lato for button text */
}

.btn:hover {
    background: #8FBC8F; /* Dark Sea Green */
}

/* Gallery Section (Homepage Specific) */
#gallery .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

#gallery .image-grid img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

#gallery .image-grid img:hover {
    transform: scale(1.03);
}


/* Intro & Testimonials (Homepage Specific) */
#intro, #testimonials {
    text-align: center;
    padding: 40px 20px;
}

.testimonial-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 15px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-card .client-name {
    font-weight: bold;
    text-align: right;
    color: #6B8E23; /* Olive Drab */
}

/* Services Page Styling */
#services-list .service-category {
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

#services-list .service-category h3 {
    text-align: left;
    color: #2E8B57; /* Sea Green */
    margin-bottom: 20px;
    border-bottom: 2px solid #DAF7A6;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif; /* Montserrat for service category headings */
}

#services-list .service-item h4 {
    color: #6B8E23; /* Olive Drab */
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif; /* Montserrat for service item sub-headings */
}

#services-list ul {
    list-style: none;
    padding-left: 0;
}

#services-list ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-left: 4px solid #8FBC8F; /* Dark Sea Green */
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

#services-list ul li strong {
    color: #333;
}

/* About Us Page Styling */
#about-content p, #about-content ul, #contact-details p {
    margin-bottom: 15px;
    padding: 0 20px; /* Add some horizontal padding */
    text-align: justify;
}

#about-content ul {
    list-style-type: disc;
    padding-left: 40px;
}

#about-content ul li {
    margin-bottom: 10px;
}

#contact-details address {
    font-style: normal; /* Override default italic address font */
    text-align: center;
    padding: 0 20px;
}

#contact-details p a {
    color: #2E8B57;
    text-decoration: none;
}

#contact-details p a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 3px solid #6B8E23; /* Olive Drab */
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        float: none;
        text-align: center;
        margin: 0 auto;
    }
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul li {
        padding: 0 10px;
    }

    #hero h2 {
        font-size: 2.5em;
    }

    .container {
        width: 95%;
    }

    #gallery .image-grid {
        grid-template-columns: 1fr; /* Stack images on small screens */
    }

    #services-list .service-category {
        padding: 15px;
    }
}