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



/* ✅ NAVBAR */
.custom-navbar {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 1320px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 0 10px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.nav-link {
    font-size: 16px;
    color: #000;
}

.book-ticketbtn {
    background-color: #000;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.book-ticketbtn:hover {
    color: #fff;
}

/* ✅ HERO */

.hero-section {
    min-height: 600px;
    background: url(banner.png) top no-repeat;
    position: relative;
    padding-top: 110px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content p {
    font-weight: 600;
    font-size: 34px;
}

/* ✅ EVENTS */
.events-section {
    padding: 80px 0px;
}

.events-section h2 {
    font-size: 48px;
    color: #000;
    font-weight: 600;
    margin-bottom: 40px;
}

.event-card {
    background: #fff;
    padding: 0px;
    border-radius: 30px;
    border: 1px solid #BDBDBD;
}

.event-card .top-img {
    border-radius: 30px 30px 0px 0px;
    width: 100%;
}

.event-body {
    padding: 24px;
}

.event-body h5 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
}

.event-body p {
    color: #595959;
    font-size: 16px;
    line-height: 24px;
}

.event-body ul li {
    font-size: 14px;
    color: #000;
}








/* ✅ FOOTER */
.footer-section {
    background: url('footer-banner.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.footer-section .container {
    background: #FFFFFF1A;
    border-radius: 30px;
    padding: 10px;

}

.footer-card {
    background: #FFFFFFCC;
    padding: 24px;
    border-radius: 30px;
    color: #000;
    height: 100%;
}

.footer-card h6 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    padding-bottom: 12px;
}

.footer-card p,.footer-card a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    display: block;
}

.footer-card input {
    border-radius: 30px;
    background-color: transparent;
    border: 1px solid #0000004D;
    color: #484848B2;
    font-size: 16px;
    height: 44px;
    padding: 0px 20px;
}

.footer-card button {
    border-radius: 20px;
}

.footer-card .book-ticketbtn {
    border-radius: 30px;
    padding: 9px;
    margin-top: 12px;
}


.copyright {
    color: #000000;
    background: #FFFFFFCC;
    padding: 24px;
    border-radius: 30px;
    font-size: 16px;
}



@media (max-width: 767px) {
    .hero-content p {
        font-size: 20px;
        margin-top: 15px;
        padding: 0px 15px;
    }

    .events-section {
        padding: 40px 0px;
    }

    .events-section h2 {
        font-size: 35px;
    }

    .footer-section {
        padding: 40px 0px;
    }

    .navbar-nav {
        flex-direction: row;
    }

    .navbar-nav .book-ticketbtn {
        font-size: 14px;
        padding: 8px 15px;
    }
    .custom-navbar {
        width: 95%;
    }
    .footer-card h6{
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width:1024px) {
    .navbar-nav {
        flex-direction: row;
    }

}