/* Municipal Pools Specific Styles */

.pools-hero {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.pools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.pool-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Removed hover effects for consistent user experience across all devices */

.pool-temperature {
    display: inline-block;
    background: #0ea5e9;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.pool-features {
    list-style: none;
    padding: 0;
}

.pool-features li {
    padding: 4px 0;
    border-bottom: 1px solid #e5e7eb;
}

.pool-features li:last-child {
    border-bottom: none;
}

.pool-location {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .pools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pool-card {
        padding: 24px 20px;
        margin: 0 10px;
    }
    
    .pool-content p {
        line-height: 1.6;
        margin-bottom: 16px;
    }
}