
.card {
    border: none;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 10px;
    height: 430px;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid #007bff;
}
.card-title {
    font-size: 22px;
    font-weight: bold;
}
.card-text {
    font-size: 16px;
    color: #555;
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 4px;
    color: #fff;
}
.completed {
    background: #28a745;  /* Green */
}
.ongoing {
    background: #ffc107;  /* Yellow */
}
.upcoming {
    background: #17a2b8;  /* Cyan */
}
.sold-out {
    background: #dc3545;  /* Red */
}
.btn-details {
    background: #007bff;
    color: #fff;
    transition: 0.3s;
}
.btn-details:hover {
    background: #0056b3;
}




.video-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    min-height: 100%;
}

.overlay {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay h1 {
    font-size: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.amenities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    width: calc(33.33% - 20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    color: white;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.amenity-card i {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 15px;
}

.amenity-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 15px;
    color: #ccc;
}

/* Tablets */
@media (max-width: 992px) {
    .amenity-card {
        width: calc(50% - 20px);
    }

    .overlay h1 {
        font-size: 2.5rem;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    .amenity-card {
        width: 100%;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }

    .amenity-card i {
        font-size: 40px;
    }

    .amenity-card h3 {
        font-size: 18px;
    }

    .amenity-card p {
        font-size: 14px;
    }
}
