/* Amenities Section
.amenities-section {
    padding: 4rem 0;
    position: relative;
    background-color: #f8f8f8;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #036135;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.amenity-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: #f0f9f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background-color: #036135;
    transform: scale(1.1);
}

.amenity-icon i {
    font-size: 30px;
    color: #036135;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon i {
    color: white;
}

.amenity-card h3 {
    color: #036135;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.amenity-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amenity-card {
        padding: 1.5rem 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
    }
    
    .amenity-icon i {
        font-size: 25px;
    }
}


.amenities-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('../img/amenities.jpg') center/cover no-repeat;
    padding: 5rem 0;
}

background-image: url('../img/amenities.jpg') center/cover no-repeat; */ */