@charset "utf-8";
body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, sans-serif;
    background-color: #f4f9f4;
    color: #1f3b1f;
}

header {
    background-color: #2e7d32;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #1b5e20;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #388e3c;
}

nav ul li a.active {
    background-color: #66bb6a;
    color: #1b5e20;
}

main {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
}

h2 {
    color: #2e7d32;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

table th, table td {
    border: 1px solid #c8e6c9;
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #a5d6a7;
    color: #1b5e20;
}

table tr:nth-child(even) {
    background-color: #e8f5e9;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid #c8e6c9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #c8e6c9;
}

input, select, textarea, button {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #a5d6a7;
    border-radius: 4px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

button {
    background-color: #2e7d32;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #388e3c;
}

fieldset {
    border: 2px solid #a5d6a7;
    padding: 15px;
    border-radius: 6px;
}

legend {
    padding: 0 8px;
    color: #1b5e20;
    font-weight: bold;
}

footer {
    background-color: #1b5e20;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
.acre-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

#acres {
    width: 200px;
}

@media (max-width: 700px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        text-align: center;
    }

    table th, table td {
        display: block;
        width: 100%;
    }

    table tr {
        margin-bottom: 15px;
        display: block;
        border: 1px solid #c8e6c9;
    }

    table td {
        border: none;
        border-bottom: 1px solid #c8e6c9;
    }
}