/* --- includes/style.css --- */
:root {
    /* Your existing colors */
    --green-dark: #1b5e20;
    --green-main: #388e3c;
    --green-light: #e8f5e9;
    --green-accent: #81c784;
    
    /* NEW: Secondary green palette for the new section */
    --green-secondary: #4caf50; 
    --green-secondary-light: #c8e6c9; 
    
    --text-dark: #333333;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--green-light);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Navigation & Header --- */
.main-header {
    background-color: var(--green-dark);
    color: var(--text-light);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--green-accent);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--text-light);
    background: none;
    border: none;
}

/* --- Hero Section --- */

.hero {
    position: relative; /* Needed for positioning the content over the image */
    /* Add other hero styles as needed, e.g., height, text alignment */
    overflow: hidden; /* Prevent image overflow if needed */
}

.hero-image {
    width: 100%; /* Make the image fill the container's width */
    height: auto; /* Maintain aspect ratio */
    /* Add object-fit for more control over image resizing/cropping: */
    /* object-fit: cover; */ /* Scales the image to cover the area while maintaining aspect ratio, potentially cropping parts */
    /* object-fit: contain; */ /* Scales the image to fit entirely within the area, potentially adding letterboxing */
}

.hero-content {
    /* If you want the content over the image, add this: */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* color: white; */ /* Make text readable on potentially dark background images */
    /* text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */ /* Add shadow to text for contrast */
}

/* --- Three Sections --- */
.content-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-grow: 1;
}

.section-card {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 5px solid var(--green-main);
    text-align: center;
}

.section-card h2 {
    color: var(--green-dark);
    margin-bottom: 1rem;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--green-dark);
    color: var(--text-light);
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--green-main);
        text-align: center;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
}

/* --- Feature Section (Alternative Green) --- */
.feature-section {
    background-color: var(--green-secondary-light);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 2px solid var(--green-accent);
    border-bottom: 2px solid var(--green-accent);
}

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-container h2 {
    color: var(--green-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.feature-container p {
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-btn {
    display: inline-block;
    background-color: var(--green-secondary);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.feature-btn:hover {
    background-color: var(--green-dark);
}