/* Amenities Page Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1582719508461-905c673771fd') center/cover;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.page-header p {
    font-size: 1.5rem;
    animation: slideInRight 1s ease-out 0.3s backwards;
}

.amenities-page {
    padding: 5rem 2rem;
    background-color: #fff;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.amenity-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.amenity-card:hover i {
    transform: scale(1.2);
}

.amenity-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.amenity-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.amenity-features {
    list-style: none;
    text-align: left;
    padding: 0 1rem;
}

.amenity-features li {
    color: #555;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.amenity-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Animation for amenity cards */
.amenity-card {
    opacity: 0;
    transform: translateY(20px);
}

.amenity-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .amenity-card {
        padding: 2rem;
    }
}