/* Locations Page Styles */
.locations-main {
    padding-top: 80px;
}

.locations-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/locations-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.locations-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.locations-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.counties-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.counties-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-color);
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.county-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.county-card:hover {
    transform: translateY(-5px);
}

.county-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.cities-list a {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.cities-list a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .counties-grid {
        grid-template-columns: 1fr;
    }

    .cities-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .county-card {
        padding: 1.5rem;
    }

    .county-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .cities-list {
        grid-template-columns: 1fr;
    }
}
