/* Hero Section */
.hero3 {
    position: relative;
    height: 60vh;
    background: url('/assets/images/membership-hero3.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero3-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fade-in 2s;
}

.hero3-text p {
    font-size: 1.2rem;
    animation: fade-in 3s;
}
/* Membership Cards */
/* Membership Cards Section */
.membership-cards {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(145deg, #ffb74d, #ff8c00); /* Gold to orange gradient */
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s ease;
    padding: 20px;
    position: relative;
    z-index: 1;
    transform: scale(0.98);
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card img:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.8rem;
    margin: 20px 0 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.card p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.card ul {
    list-style-type: none;
    padding: 0 1rem;
    text-align: left;
    margin: 10px 0;
    font-size: 1rem;
}

.card ul li {
    margin: 10px 0;
}

.card .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card .cta-button:hover {
    background-color: #e64a19;
    transform: translateY(-5px);
}


/* Voucher Carousel */
.voucher-carousel {
    padding: 3rem 2rem;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    gap: 2rem;
    animation: scroll-horizontal 20s linear infinite; /* Animation for auto-scrolling */
    will-change: transform; /* Optimization for smoother animation */
}

.voucher {
    background: linear-gradient(145deg, #ffeb3b, #fbc02d); /* Bright yellow to gold gradient */
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 0 0 250px;
    overflow: hidden;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.voucher img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.voucher h3 {
    margin: 1rem 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.voucher p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.voucher:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Horizontal Scroll Animation */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* City Grid */
.city-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.city-card {
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
}

.city-card:hover {
    background-color: #81C784;
    transform: scale(1.05);
}

/* Hotel Section */
.city-hotels {
    display: none;
    margin: 40px 0;
    color: black;
}

.hotel-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hotel-category {
    flex: 1;
    background: #f4f4f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hotel-category h3 {
    margin-bottom: 10px;
    color: #333;
}

.hotel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    
}

.hotel-list .card {
    background: black;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-list .card:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

