/* ===== AMENITIES SECTION WITH IMAGES ===== */
.amenities-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.amenities-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.amenities-section .section-title {
    color: #222;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    margin-top: -240px;
}

.amenities-section .section-subtitle {
    color: blue;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Amenities Grid - 3x2 Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Amenity Card */
.amenity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Amenity Image */
.amenity-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image {
    transform: scale(1.05);
}

/* Amenity Content */
.amenity-content {
    padding: 25px;
    text-align: center;
}

.amenity-title {
    color: red;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
}

.amenity-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 0;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amenity-image {
        height: 180px;
    }
    
    .amenity-content {
        padding: 20px;
    }
    
    .amenity-title {
        font-size: 1.1rem;
    }
}