/* * {
  outline: 1px solid red;
} */

:root {
  --body-color: #a3a3a3;
  --brand-yellow: #dec47a;
  --brand-gray: #1f1f1f;
  --text-emphasis: #f5f5f5;
}

html {
  /* If your content is too close or beneath the header when making use of smooth scroll, You can uncomment the following property. Play around with the value to achieve desired result */
  scroll-padding-top: 10px;
}

body {
  font-family: "Poppins", serif;
  font-weight: 400;
  line-height: 160%;
  color: var(--body-color);
  background-image: linear-gradient(
      to right,
      rgba(1, 2, 3, 0.5),
      rgba(1, 2, 3, 0.5)
    ),
    url("../img/bg-texture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

input {
  color-scheme: dark;
}

input:focus {
  color-scheme: light;
}

small {
  font-style: italic;
}

/*******************************/
/* BOOTSTRAP OVERRIDES START */
/*******************************/
.container {
  padding-left: 20px;
  padding-right: 20px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: var(--brand-yellow);
}

.btn {
  --bs-btn-border-radius: 0;
  text-transform: uppercase;
}

.btn-sm {
  --bs-btn-padding-x: 12px;
  --bs-btn-padding-y: 6px;
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-yellow);
  --bs-btn-border-color: var(--brand-yellow);
  --bs-btn-hover-color: var(--brand-gray);
  --bs-btn-hover-bg: var(--brand-yellow);
  --bs-btn-hover-border-color: var(--brand-yellow);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--brand-gray);
  --bs-btn-active-bg: var(--brand-yellow);
  --bs-btn-active-border-color: var(--brand-yellow);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--brand-yellow);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--brand-yellow);
  --bs-gradient: none;
}

.btn-outline-primary:hover .lds-ellipsis div {
  background: var(--brand-gray);
}

.form-control {
  color: var(--text-emphasis);
  border-color: var(--text-emphasis);
  background-color: transparent;
  border-radius: 0;
  font-style: italic;
  line-height: inherit;
}

.form-control::placeholder {
  color: var(--body-color);
}

select.form-control {
  -webkit-appearance: menulist !important;
  -moz-appearance: menulist !important;
  -ms-appearance: menulist !important;
  -o-appearance: menulist !important;
  appearance: menulist !important;
  padding-right: 16px;
}
/*******************************/
/* BOOTSTRAP OVERRIDES END */
/*******************************/

/*******************************/
/* REUSABLE CUSTOM CLASSES START */
/*******************************/
.text-emphasis {
  color: var(--text-emphasis);
}

.para {
  max-width: 800px;
  font-style: italic;
}

.text-brand-yellow {
  color: var(--brand-yellow);
}

/*******************************/
/* REUSABLE CUSTOM CLASSES END */
/*******************************/

/*******************************/
/* HEADER STYLING START */
/*******************************/
/* Header properties */
.c-header {
  --max-width: 1320px;
  --logo-height: 30px;
  --toggler-bg-color: transparent;
  --toggler-icon-color: var(--brand-yellow);
  --nav-bg-color: var(--brand-gray);
  --links-gap: 32px;
  --desktop-links-gap: 64px;
  --nav-link-color: #fff;
  --header-fixed-bg-color: var(--brand-gray);
}

.c-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.c-header-content {
  padding: 16px;
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.c-logo:link,
.c-logo:visited {
}

.c-logo:hover {
}

.c-logo:active {
}

.c-logo-img {
  display: inline-block;
  height: var(--logo-height);
}

.c-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 42px;
  height: 30px;
  background-color: var(--toggler-bg-color);
  position: relative;
  z-index: 20;
}

.c-toggler-icon,
.c-toggler-icon::before,
.c-toggler-icon::after {
  display: inline-block;
  height: 2px;
  width: 40px;
  border-radius: 20px;
  background-color: var(--toggler-icon-color);
  transition: all 0.3s ease;
}

.c-toggler-icon {
  position: relative;
}

.c-toggler-icon::before,
.c-toggler-icon::after {
  position: absolute;
  left: 0;
  content: "";
  display: inline-block;
}

.c-toggler-icon::before {
  top: -12px;
}

.c-toggler-icon::after {
  top: 12px;
}

.c-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--nav-bg-color);
  left: 100%;
  transition: all 0.6s ease;
}

.c-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--links-gap);
  height: 100%;
}

.c-menu-item {
}

.c-menu-link:link,
.c-menu-link:visited {
  text-decoration: none;
  color: var(--body-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

.c-menu-link::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.c-menu-link:hover::after,
.c-menu-link.active::after {
  opacity: inherit;
  bottom: -8px;
}

.c-menu-link:active,
.c-menu-link.active {
  color: var(--brand-yellow);
}

/* STYLING WHEN HEADER IS OPEN */
.c-header.open .c-toggler-icon {
  background-color: transparent;
}

.c-header.open .c-toggler-icon::before,
.c-header.open .c-toggler-icon::after {
  top: 0;
}

.c-header.open .c-toggler-icon::before {
  transform: rotate(135deg);
}

.c-header.open .c-toggler-icon::after {
  transform: rotate(-135deg);
}

.c-header.open .c-nav {
  left: 0;
}

/* STYLING WHEN HEADER IS FIXED */
.c-header.fixed {
  position: fixed;
  background-color: var(--header-fixed-bg-color);
  border-bottom: 2px solid var(--brand-yellow);
}

/* STYLING FOR DESKTOP HEADER */
/* Change min-width to desired value to achieve responsiveness at diff screen size.
  (NOTE: We cannot use CSS properties to set min-width value. It as to be done manually) */
@media screen and (min-width: 1200px) {
  .c-toggler {
    display: none;
  }

  .c-nav {
    position: relative;
    z-index: auto;
    top: auto;
    height: auto;
    width: auto;
    background-color: transparent;
    left: auto;
  }

  .c-menu {
    gap: var(--desktop-links-gap);
    flex-direction: row;
  }
}

/*******************************/
/* HEADER STYLING END */
/*******************************/

/*******************************/
/* HERO SECTION START */
/*******************************/
.hero {
  position: relative;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
}

.hero-video::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)
  );
}

@media (min-width: 1200px) {
  .hero-video::before {
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0)
    );
  }
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 5;
}

.hero-content {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  min-width: 240px;
  width: 80%;
  max-width: 480px;
}

.inner-hero {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.8)
    ),
    url("../new-img/event-hero-new.jpg");
}

.inner-hero .hero-content {
  height: 75vh;
}

/*******************************/
/* HERO SECTION END */
/*******************************/

/*******************************/
/* FOOTER START */
/*******************************/
.footer {
  border-top: 1px solid #595959;
}

.footer-logo {
  width: 100%;
  max-width: 240px;
  display: block;
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav li {
  font-family: inherit;
  font-style: italic;
}

.footer-nav a:link,
.footer-nav a:visited {
  text-decoration: none;
  font-family: inherit;
  color: inherit;
  font-style: italic;
  transition: all 0.3s ease;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover,
.footer-nav a:active {
  color: var(--text-emphasis);
  border-bottom: 1px solid currentColor;
}

.footer-icon-list-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-icon-list-item i {
  font-size: 20px;
  color: var(--text-emphasis);
}

.footer-content {
  display: grid;
  grid-gap: 48px;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-gap: 48px;
    grid-template-columns: repeat(2, 1fr);
  }

  .subscribe-form-wrapper {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .footer-content {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
  }

  .opening-hours {
    justify-self: center;
  }

  .footer-follow {
    /* justify-self: end; */
  }

  .subscribe-form-wrapper {
    grid-column: auto;
  }
}

.social-icons:link,
.social-icons:visited {
  text-decoration: none;
  color: var(--brand-yellow);
  font-size: 24px;
  transition: 0.3s;
}

.social-icons:hover,
.social-icons:active {
  color: var(--text-emphasis);
}

.footer-logo {
  width: 128px;
}
/*******************************/
/* FOOTER END */
/*******************************/
.success-msg,
.error-msg {
  padding: 16px;
}

.success-msg div,
.error-msg div {
  padding: 16px;
}

.success-msg div {
  background-color: rgba(31, 31, 31, 0.5);
  color: var(--brand-yellow);
  /* border: 1px solid rgba(34, 197, 94, 0.3); */
}

.error-msg div {
  background-color: rgba(31, 31, 31, 0.5);
  color: #ef4444;
  /* border: 1px solid rgba(239, 68, 68, 0.3); */
}

/* Loader */
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 10px;
}
.lds-ellipsis div {
  position: absolute;
  top: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.contact-us-content {
  display: grid;
  grid-gap: 32px;
}

@media (min-width: 576px) {
  .contact-us-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .contact-us-content {
    grid-template-columns: 1fr max-content 1fr;
  }
}

/* GALLERY SECTION */
.gallery {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, max-content);
  margin-bottom: -32px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item-thumbnail {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: none;
}

@media (min-width: 576px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, max-content);
    margin-bottom: -32px;
  }
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, max-content);
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, max-content);
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, max-content);
    margin-bottom: 0;
  }
}

@media (min-width: 1400px) {
  .gallery {
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, max-content);
    margin-bottom: 0;
  }
}

.form-logo {
  width: 60px;
}

.form-logo img {
  margin-top: -5px;
}

@media (min-width: 768px) {
  .form-logo {
    width: 70px;
  }
}

@media (min-width: 1200px) {
  .form-logo {
    width: 80px;
  }
}

.text-logo img {
  width: 48px;
  height: auto;
  display: inline-block;
  margin: 0 4px;
}

.success-hide {
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.new-footer-link {
  color: inherit;
  border-bottom: solid transparent 1px;
}

.new-footer-link:hover {
  border-bottom: solid currentColor 1px;
}

.event-img {
  height: 80vh;
  object-fit: cover;
  width: 100%;
}

/*.grey-img {*/
/*  filter: grayscale(100%);*/
/*  transition: all 0.5s;*/
/*}*/

/*.grey-img:hover {*/
/*  filter: grayscale(0%);*/
/*}*/

.menu-wrapper {
  margin-top: 120px;
  width: 100%;
  max-width: 800px;
}

.fs-sm {
  font-size: 12px;
}

.object-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-sm {
  font-size: 14px;
}
.award-badge img{
    border: 2px solid #c8a96b !important;
}