* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

.hero {
    height: 400px;
    background: linear-gradient(135deg, #2d5a27 0%, #8b4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;

}

.hero-search {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;

    width: 90%;
    max-width: 1100px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.hero-search h1 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.hero-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.hero-search input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#suggestions {
    position: absolute;
    background: white;
    border: 0px solid #e1e5e9;
    width: calc(100% - 4rem);
    top: 100%;
    left: 2rem;
    z-index: 1000;
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 8px;
    color: #1a1a1a;
}

.suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.suggestion:last-child {
    border-bottom: none;
}

.suggestion:hover {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

form.filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e5e9;
}

form.filter select {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    background: white;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
}

form.filter select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

form.filter button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: none;
    background: #667eea;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

form.filter button:hover {
    background: #5a6fd8;
    transform: translateY(-1px);
}

form.filter .clear-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

form.filter .clear-btn:hover {
    color: #c82333;
}

.active-filters {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
}

.active-filters span:first-child {
    font-weight: 600;
    color: #1a1a1a;
}

.active-filters .badge {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #c7d2fe;
}

h2 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.parks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.park {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e5e9;
    transition: all 0.2s ease;
}

.park:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.park-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.park:hover .park-image img {
    transform: scale(1.05);
}

.park-content {
    padding: 1.5rem;
}

.park h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.park h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.park h3 a:hover {
    color: #667eea;
}

.park p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.park a {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.park a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.contact-card {
    flex: 1 1 250px;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    min-width: 240px;
    max-width: 320px;
}

.contact-card p {
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.park-info p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.weather-box,
.directions-box {
    background: #f9f9f9;
    border-left: 4px solid #0077cc;
    padding: 12px 16px;
    margin-top: 20px;
    border-radius: 6px;
}

.weather-box h3,
.directions-box h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.1em;
}

.directions-link {
    margin-top: 15px;
}




@media (max-width: 768px) {
    .hero-search h1 {
        font-size: 2rem;
    }

    .container {
        padding: 1rem;
    }

    .parks {
        grid-template-columns: 1fr;
    }

    form.filter {
        flex-direction: column;
    }
}