@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Sora", sans-serif;
    margin: 0;
    background-color: #000;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
}

section {
    padding: 80px 0px;
}

/* HEADER */
header {
    padding: 15px 0px;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

header.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    padding: 10px 0;
    display: block;
}

.banner-image.hide-banner {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.logo img {
    width: 80px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* HERO */
/* .hero-section {
    text-align: center;
    padding: 80px;
    background: url("/banner.png") center / 100% 100% no-repeat;
    aspect-ratio: 8 / 3;
    position: relative;
} */

.hero-section {
    width: 100%;
    height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 30%;
    width: 300px;
    text-align: center;
    margin: 0 auto;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    left: 0;
    right: 0;
    bottom: 0;
}

.banner-image img {
    width: 200px;
}

.banner-slider {
    position: absolute;
    bottom: 25px;
    width: 100%;
}

.banner-slider .item {
    padding: 0px 8px;
}


.banner-slider .img-wrap {
  height: 200px;
  border-radius: 30px;
  overflow: hidden; /* 🔥 IMPORTANT */
}

.banner-slider .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.banner-slider .item:hover img {
  transform: scale(1.1);
}

.banner-topslider .owl-stage {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}

.banner-slider p {
    background-color: #00000066;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0px 0px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    width: 95%;
    margin: 0 auto;
    padding: 10px;

}

.hero-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-section::before {
    background: rgb(0 0 0 / 39%);
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


/* About */

.about-section p {
    margin-bottom: 15px;
    color: #fff;
    padding: 0px 10%;
}

.about-section.dark p {
    color: #fff;
}

.Honored-Guests {
    padding: 15px 0px;
}

.Honored-Guests span {
    /* background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-weight: 500;
}

/* 
.statement-box {
    padding-left: 24px;
    border-left: 4px solid #fff;
} */

.statement-text {
    font-style: italic;
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    line-height: 25px;
}


/* past events */
/* .grid-events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 80px;
    text-align: center;
} */

.event-card {
    border-radius: 4px;
    position: relative;
}

.event-card img {
    width: 100%;
    height: 200px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.event-card:hover img {
    transform: scale(1.1);
}

/* LINKS */
.event-card a {
    text-decoration: none;
}

.event-card p {
    padding: 10px 20px;
    color: #fff;
    font-size: 14px;
    position: absolute;
    bottom: 5px;
    background: #000000a1;
    width: 93%;
    border-radius: 4px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.event-card p:hover {
    /* background: linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    opacity: 0.7;
}

/* OWL NAV BUTTONS */
.Past-events .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.Past-events .item {
    padding: 0px 15px;
}

.Past-events .owl-theme .owl-nav [class*=owl-]:hover {
    color: #000 !important;
}

.Past-events .owl-theme .owl-nav {
    margin: 0 !important;
}

.Past-events .owl-nav button {
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd !important;
}

/* Upcoming-events */
.Upcoming-events {
    background-color: rgb(204 204 204 / 5%);
}

.Upcoming-events p {
    color: #fff;
    padding: 0px 12%;
}

.months {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 30px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.months img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.months div:hover {
    transform: scale(1.1);
}

.months div {
    /* border: 1px solid #dddddd3d; */
    text-transform: capitalize;
    color: #fff;
    /* border-radius: 8px; */
    text-align: center;
    transition: transform 0.5s ease;
}

.months div p {
    margin: 0;
    padding: 10px;
}

.months div:hover {
    border-color: #fef08a7d;
    cursor: pointer;
}

/* FOOTER */
.footer {
    padding: 20px;
    border-top: 1px solid #dddddd3d;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

@media (max-width: 767px) {
    section {
        padding: 40px 0px;
    }

    .hero-section {
        height: 75vh;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    .hero-section h2 {
        font-size: 18px;
    }

    .about-section p,
    .Upcoming-events p {
        line-height: 22px;
        font-size: 14px;
        padding: 0;
    }

    .months img {
        height: 200px;
    }

    .months {
        flex-wrap: wrap;
    }

    .logo img {
        width: 75px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .main-nav {
        gap: 13px;
    }

    .Upcoming-events h3,
    .Past-events h3 {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width:1024px) {
    .grid-events {
        grid-template-columns: repeat(2, 1fr);
    }


}