/* Custom styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.hero-lottie {
    width: 225px;
    height: 225px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

@media (max-width: 991.98px) {
    .hero-lottie {
        width: 187px;
        height: 187px;
    }
}

@media (max-width: 767.98px) {
    .hero-lottie {
        width: 150px;
        height: 150px;
    }
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.location-card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

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

footer {
    margin-top: auto;
}

/* Municipal Card Enhancements */
.municipal-card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.municipal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 37, 39, 0.15);
}

.municipal-card .card-header {
    border-bottom: 0;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.municipal-card .icon-wrapper {
    width: 24px;
    text-align: center;
}

.municipal-card .contact-info li {
    margin-bottom: 1rem;
}

.municipal-card .contact-info a:hover {
    color: var(--bs-primary);
}

.municipal-card .services-info {
    border-left: 4px solid var(--bs-primary);
}

.municipal-card .curbside-info {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.facility-badge {
    z-index: 1;
}

.facility-image-container {
    overflow: hidden;
    border-radius: 0.25rem;
}

.facility-image-container img {
    transition: transform 0.5s ease;
}

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