 :root {
     --gold: #e4aa0b;
     --dark: #0e0e0e;
     --muted: #6c757d;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: #222;
 }

 h1,
 h2,
 h3,
 h4 {
     font-family: "Tinos", serif;
     font-weight: 400;
     font-style: normal;
     color: black;
 }

a {
    color: rgb(0 0 0);
    text-decoration: none;
}
 /* Navbar */
 .navbar {
     background: rgb(0 0 0 / 70%);
     backdrop-filter: blur(6px);
     padding: 0px;
 }


 .navbar-brand {
     font-weight: 700;
     color: var(--gold) !important;
     padding-top: 0px;
     padding-bottom: 0px;
 }

 .navbar-brand img.logo {
     height: 60px;

 }

 .nav-link {
     color: #eee !important;
     margin-left: 1rem;
 }

 .nav-link.btn {
     background-color: var(--gold);
     color: #000;
     border-radius: 5px;
     padding: 8px 18px !important;
 }

 .nav-link.btn:focus,
 .nav-link.btn:active,
 .nav-link.btn:hover {
     background-color: #fff;
     color: var(--gold);
     border-color: var(--gold);
     color: var(--gold) !important;
 }

 @media (min-width:992px) {
     .navbar-expand-lg .navbar-nav {
         align-items: center;
     }

 }

 @media (max-width:991px) {
     .navbar-nav {
         margin-bottom: 1rem;
     }

 }


 @media (max-width:991px) {
     .nav-link {
         margin-left: 0rem;
     }

 }

 .navbar-toggler {
     background-color: #fff !important;
 }

 .nav-link.btn {
     color: #000 !important;
 }

 /* home banner css start here */
 section.banner {
     /* margin-top: 5rem; */
     position: relative;
     width: 100%;
     overflow: hidden;
     /* height: 92vh; */
     height: 100vh;

 }

 section.banner .banner-video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 1;
 }

 section.banner .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.678));
     z-index: 2;
 }

 section.banner .banner-content-container {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 3;
     display: flex;
     align-items: end;
     justify-content: center;
     padding-bottom: 1rem;
 }


 section.banner .banner-content-container h2.banner-heading {
     font-size: 46px;
     font-weight: bold;
     color: #FFFFFF;
     font-family: var(--font-familly-libre-baskerville);
     text-shadow: 2px 2px #282626;
 }

 @media (max-width:768px) {
     section.banner .banner-content-container h2.banner-heading {
         font-size: 26px;
         margin-bottom: 0rem;
         display: none;
     }

     section.banner .banner-content-container .banner-description {
         font-weight: 400;
         font-size: 20px !important;
         margin-bottom: 1rem;
         display: none;

     }

     section.banner {
         height: 65vh;
     }

     section.banner .banner-content-container {
         /* align-items: center;
        justify-content: center; */
         padding-bottom: 0rem;
     }
 }

 section.banner .banner-content-container .banner-description {
     font-family: var(--font-familly-poppins);
     font-weight: 400;
     font-size: 26px;
     line-height: 209.5%;
     color: #FFFFFF;
     text-shadow: 2px 2px #282626;
 }

 section.banner .banner-content-container .banner-button {
     width: fit-content;
     padding: 7px 14px;
     border: 1px solid #fff;
     background-color: #fff;
     color: #000;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin: auto;
     border-radius: 20px;
     font-weight: bold;
     font-size: 14px;
 }

 section.banner .banner-content-container .banner-button.venue-banner-btn {
     background-color: #ffffffb0;
 }

 section.banner .btn-gold {
     color: #000;
 }

 /* home banner css start here */




 /* Hero */
 .hero {
     min-height: 100vh;
     background: linear-gradient(rgba(0, 0, 0, 0.432), rgba(0, 0, 0, 0.356)), url(./img/hero-banner.png) center / cover no-repeat;
     color: #fff;
 }

 .hero-badge {
     display: inline-block;
     border: 1px solid var(--gold);
     padding: 6px 14px;
     font-size: 14px;
     letter-spacing: 2px;
     margin-bottom: 20px;
 }

 .hero h2 {
     font-size: clamp(2.5rem, 5vw, 4rem);
 }

 #about h1 {
     font-size: 2rem;
     font-family: 'Cinzel', serif;
     letter-spacing: 1px;
     color: #000;
 }

 /* Section */
 section {
     padding: 100px 0;
 }

 .section-subtitle {
     color: #d06000;
     letter-spacing: 3px;
     font-size: 24px;
     margin-bottom: 10px;
 }

 /* Event Cards */
 .event-box {
     border: 1px solid #eee;
     padding: 35px;
     height: 100%;
     transition: all .4s ease;
     background: #f5f5f5;
     border-radius: 10px;
 }

 .event-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
     border-color: transparent;
 }

 .event-date {
     color: var(--gold);
     margin-bottom: 10px;
     font-size: 14px;
 }

 /* Gallery */
 .swiper-slide img {
     width: 100%;
     height: 500px;
     object-fit: cover;
     border-radius: 12px;
 }

 /* Contact */
 .contact-section {
     background: var(--dark);
     color: #fff;
     padding-bottom: 50px;
 }

 .form-control {
     border-radius: 0;
     padding: 14px;
 }

 .btn-gold {
     background: var(--gold);
     color: #000;
     font-weight: 600;
     border: none;
     padding: 14px;
 }

 /* Footer */
 footer {
     background: #000;
     color: #777;
     padding: 30px 0;
 }

 @media (max-width: 768px) {
     section {
         padding: 70px 0;
     }
 }


 #home .btn-gold:hover {
     color: #fff;
 }


 /* hero section */
 .btn-gold {
     width: fit-content;
     border: 1px solid var(--gold);
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .btn-gold:hover {
     border: 1px solid #fff;
 }

 .btn-gold i {
     display: flex;
     align-items: center;
     justify-content: center;
 }


 /* why-us css start here */
 #why-us p {
     color: #454242;
 }

 #why-us h3 {
     color: var(--gold);
     /* color: #000; */
     font-size: 20px;
     transition: all .3s ease-in-out;

 }

 #why-us .item {
     transition: all .3s ease-in-out;
     cursor: pointer;
     background-color: #f5f5f5;
     border-radius: 10px;
 }

 #why-us .item h3,
 #why-us .item p {
     transition: all .3s ease-in-out;
 }

 #why-us .item:hover {
     background-color: var(--gold);
     color: #fff;
 }

 #why-us .item:hover h3,
 #why-us .item:hover p {
     color: #fff;
 }

 #why-us .row-container {
     min-height: 350px;
     height: auto;
 }

 #why-us .row-container .carousel img {
     width: 100%;
     height: 100%;
     max-height: 475px;
     object-fit: cover;
     border-radius: 10px;
 }

 /* Tablet */
 @media (max-width: 991px) {
     #why-us .row-container {
         min-height: 300px;
     }

     #why-us .row-container .carousel img {
         max-height: 350px;
     }
 }

 /* Mobile */
 @media (max-width: 576px) {
     #why-us .row-container {
         min-height: auto;
     }

     #why-us .row-container .carousel img {
         /* max-height: 220px; */
         border-radius: 8px;
     }
 }




 /* gallery css start here  */
 .gallery .swiper-pagination .swiper-pagination-bullet {}

 .gallery .swiper-pagination .swiper-pagination-bullet {
     opacity: 1;
     background: #fff;
 }

 .swiper-pagination-bullet-active {
     opacity: var(--swiper-pagination-bullet-opacity, 1);
     background: var(--gold) !important;
 }



 /* contact css start here */
 #contact {
     color: #000;
 }

 #contact .social-icons-container a {
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 #contact .social-icons-container a i {
     color: #000;
     font-size: 22px;
 }

 #contact .social-icons-container a:hover i {
     color: var(--gold);
 }

 #contact .btn-gold:hover {
     border: 1px solid #000;

 }

 /* contact css end here */



 /* faq section css start here */
 .faq-section {}

 .accordion-button {
     font-weight: 600;
     border-color: var(--gold);
     background-color: #ebce80;

 }

 .accordion-button:not(.collapsed) {
     background-color: var(--gold);
     color: #ffffff;
     box-shadow: none;
 }

 .accordion-button:not(.collapsed)::after {
     filter: brightness(0) invert(1);
     /* white icon */
 }

 .accordion-button.collapsed::after {
     filter: none;
     /* black */
 }

 .accordion-button:focus {
     box-shadow: none;
     border-color: #c8a24a;
 }

 .accordion-button::after {
     filter: brightness(0) saturate(100%) invert(67%) sepia(41%) saturate(473%) hue-rotate(7deg) brightness(94%) contrast(92%);
 }

 .accordion-item {
     border: 1px solid rgba(200, 162, 74, 0.3);
     margin-bottom: 10px;
     border-radius: 6px;
     overflow: hidden;
 }

 .accordion-flush>.accordion-item:last-child {

     border-bottom: 1px solid rgba(200, 162, 74, 0.3) !important;
 }

 .accordion-item {
     border-bottom: 1px solid rgba(200, 162, 74, 0.3);
     overflow: hidden;
 }

 .accordion-body {
     color: #555;
 }

 /* faq section css end here */

 #events {}

 #events h3 {
     font-size: 20px;
     color: var(--gold);
 }


 /* support section start here */
 section.support {}

 section.support .wrapper {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
 }

 /* Tablet */
 @media (max-width: 991px) {
     section.support .wrapper {
         grid-template-columns: repeat(2, 1fr);
     }

     section.support .wrapper .item a h3 {
         text-wrap: wrap;
     }
 }

 /* Mobile */
 @media (max-width: 575px) {
     section.support .wrapper {
         grid-template-columns: 1fr;
     }
 }


 section.support .wrapper .item {}


 section.support .wrapper .item a {
     display: block;
     position: relative;
     text-decoration: none;
     width: 100%;
     height: 100%;
     overflow: hidden;
     border-radius: 10px;
 }



 section.support .wrapper .item a img {
     border-radius: 10px;
     transition: all .3s ease-in-out;
 }

 section.support .wrapper .item a .overlay {
     position: absolute;
     left: 0;
     bottom: 0;
     width: 100%;
     height: 50%;

     background: linear-gradient(to top,
             #ffb300d0,
             #00000000);

     z-index: 1;
     transition: transform 0.35s ease-in-out;
 }



 section.support .wrapper .item a h3 {
     position: absolute;
     bottom: 5%;
     left: 50%;
     transform: translateX(-50%);
     color: #fff;
     z-index: 2;
     font-size: 22px;
     font-weight: 600;

 }

 @media (min-width: 991px) {
     section.support .wrapper .item a h3 {
         text-wrap: nowrap;
     }
 }

 @media (max-width: 576px) {
     section.support .wrapper .item a h3 {
         text-wrap: nowrap;
     }
 }



 section.support .wrapper .item a:hover img {
     transform: scale(1.3);
 }


 /* venue css start here */
 #venue .btn-gold {
     color: #000;
 }

 #venue .btn-gold:hover {
     border: 1px solid #000;
     color: #000;
 }

 #venue p a{
     color : rgba(33, 37, 41, 0.75);
 }



 /* grid gallery section css start here */
 #gallery .gallery-img {
     width: 100%;
     aspect-ratio: 1 / 1;
     object-fit: cover;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 #gallery .gallery-img:hover {
     transform: scale(1.03);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }

 /* grid gallery section css end here */