body {
    font-family: "Onest", sans-serif;
}

/*  banner */
.banner-div {
    background-image: url(/banner.svg);
    min-height: 600px;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 100px 0px;
    width: 100%;
    background-size: cover;
}


/* Container */
.card-wrapper {
    position: relative;
}


/* Image Wrapper */
.image-wrapper {
    position: relative;
    z-index: 10;
    animation: floatY 4s ease-in-out infinite;
    will-change: transform;
}

/* Smooth floating animation */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Image */
.event-image {
    width: 100%;
    transform: rotate(1deg);
    transition: transform 0.5s ease;
    display: block;
}

/* Hover Effect */
.event-image:hover {
    transform: rotate(-3deg);
}

/* Date Badge */
.date-badge {
    position: absolute;
    top: 51px;
    right: 24px;
    width: 48px;
    height: 48px;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    font-size: 16px;
    background-color: #F6339A;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.5s infinite;
    z-index: 20;
}

/* Animations */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


h1 {
    font-size: 94px;
    font-weight: 700;
    font-family: "Oxygen", sans-serif;
    color: #fff;
    text-transform: uppercase;
    line-height: 86.4px;
}

h1 span {
    background: linear-gradient(90deg, #C27AFF 0%, #FB64B6 50%, #FF6467 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.date_span {
    backdrop-filter: blur(12px);
    border: 1px solid #FFFFFF1A;
    background: rgba(255, 255, 255, 0.05);
    color: #FCCEE8;
    font-size: 14px;
    font-family: onest;
    padding: 8px 16px;
    border-radius: 33px;
    margin: 27px 0px 31px;
    width: fit-content;
}

.date_span span {
    width: 8px;
    height: 8px;
    background-color: #00C950;
    border-radius: 100px;
    display: inline-block;
    margin-right: 9px;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #fff;
}

h2 span {
    display: inline-block;
    width: 48px;
    background: #F6339A;
    height: 4px;
    border-radius: 33px;
}

.banner_heading p {
    color: #D1D5DC;
    font-size: 24px;
}
/* 
.banner_heading p span {
    color: #FB64B6;
} */

.bottom_btn {
    margin-top: 56px;
}

.buy-ticketbtn {
    background-color: #fff;
    border-radius: 33px;
    border: 0;
    padding: 17px 34px;
    color: #000000;
    font-size: 16px;
    transition: 300ms ease;
}

.white-img {
    display: none;
}

.buy-ticketbtn:hover .white-img {
    display: inline-block;
}

.buy-ticketbtn:hover .black-img {
    display: none;
}

.buy-ticketbtn:hover {
    background: linear-gradient(to right,
            #ec4899,
            #a855f7);
    color: #fff;
}

.event-detailbtn {
    border-radius: 33px;
    padding: 17px 34px;
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid #FFFFFF33;
    background-color: transparent;
    transition: 300ms ease;
}

.event-detailbtn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Presented_By */
.Presented_By {
    padding: 48px 0px;
    background-color: #000000;
}

.Presented_By h3 {
    font-size: 14px;
    font-weight: 400;
    color: #6A7282;
    letter-spacing: 2.8px;
    padding-bottom: 32px;
}

/* Event_Details */
.Event_Details {
    background-color: #09090B;
    border-top: 1px solid #FFFFFF1A;
    padding: 80px 0px;
}

.Event_Details h4 {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.borderpink {
    background: linear-gradient(90deg, #F6339A 0%, #AD46FF 100%);
    width: 94px;
    height: 4px;
    border-radius: 33px;
}

.event_card {
    backdrop-filter: blur(8px);
    border: 1px solid #FFFFFF0D;
    background-color: #18181B80;
    border-radius: 16px;
    text-align: center;
    padding: 33px;
    height: 100%;
    transition: transform 0.3s ease;
}

.event_card:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.event_card img {
    transition: transform 0.3s ease;
}

.event_card:hover img {
    transform: scale(1.1);
}

.event_card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.event_card p {
    font-size: 16px;
    font-weight: 400;
    color: #99A1AF;
}

/* .map_area {
    background-color: #FFFFFF01;
    border: 1px solid #FFFFFF1A;
    border-radius: 16px;
    box-shadow: 0px 25px 50px -12px #00000040;
    margin-top: 64px;
    overflow: hidden;
}

.map_area img {
    border-radius: 16px;
    width: 100%;
} */

/* footer */
footer {
    background-color: #000000;
    border-top: 1px solid #FFFFFF1A;
    padding: 48px 0px;
}

footer span {
    font-size: 14px;
    font-weight: 400;
    color: #6A7282;
}

a {
    text-decoration: none;
}



/* media query */
@media screen and (max-width: 1000px) {
    .banner-div {
        padding: 30px 0px;
        text-align: center;
        background-size: auto;
        background-repeat: repeat;
    }

    h1 {
        font-size: 60px;
        line-height: 49px;

    }

    .date_span {
        margin: 27px auto;
    }

    h2 {
        font-size: 30px;
        justify-content: center;
    }

    .banner_heading p {
        font-size: 20px;
    }

    .bottom_btn a {
        width: 100%;
        display: block;
    }

    .Presented_By img {
        width: 80%;
    }

    .Event_Details h4 {
        font-size: 30px;
    }

    .map_area {
        margin-top: 30px;
    }

    footer {
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .banner-div {
        background-size: auto;
        background-repeat: repeat;
    }
}