﻿
/* Hero Section */
.hero {
    background: url('/images/landingbanner1.png') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.scroll-container {
    display: none
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero .hero-content {
    z-index: 1;
}

/* Section titles */
.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Coupons */
.coupon-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    min-width: 240px;
    transition: transform 0.3s;
}

    .coupon-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

/* Features */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.upcoming-feature {
    filter: blur(1.5px);
    pointer-events: none;
    position: relative;
}

.blur-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

/* Payment icons */
.payment-icons i {
    font-size: 2rem;
    margin: 0 10px;
}

.scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.scroll-track {
    display: flex;
    animation: scrollCards 20s linear infinite;
}

.scroll-container {
    display: inline-flex;
    gap: 20px;
    animation: scrollCards 20s linear infinite;
}

    .scroll-container:hover {
        animation-play-state: paused; /* Pause on hover */
    }

.card {
    width: 250px;
    flex-shrink: 0;
    border-radius: 15px;
    height: 60%;
}

@keyframes scrollCards {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


