/* ========================================
   Local Amenities Page Styles
======================================== */

.amenity-card {
    background: var(--lf-bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.amenity-card:hover {
    transform: translateY(-8px);
}

.amenity-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

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

.amenity-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.amenity-content h3 {
    color: var(--lf-text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amenity-content p {
    color: var(--lf-text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.amenity-content .btn {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .amenity-content {
        padding: 1.5rem;
    }

    .amenity-content h3 {
        font-size: 1.25rem;
    }
}
