:root {
  --ink: #20231f;
  --muted: #667067;
  --cream: #f7f3ea;
  --gold: #9a6a2d;
  --gold-dark: #754d1f;
  --line: #e5e0d6;
  --radius: 12px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--gold-dark);
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0.5rem 0 1rem;
}
h3 {
  font-size: 1.25rem;
}
.topbar {
  background: #20231f;
  color: #e5e4df;
  font-size: 0.82rem;
  padding: 0.35rem 0;
}
.topbar a {
  color: #fff;
}
.topbar i {
  color: #d4a65c;
  margin-right: 0.25rem;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px #0000000b;
}
.navbar {
  min-height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.navbar-brand small {
  display: block;
  font-size: 16px;
  margin-top: 0.35rem;
  color: #000000;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
}
.navbar-nav {
  gap: 0.15rem;
}
.navbar-nav > li > a {
  display: block;
  padding: 0.55rem 0.55rem;
  font-weight: 600;
  font-size: 0.88rem;
}
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 28px #00000012;
  padding: 0.4rem;
}
.btn {
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  border-width: 1px;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(20, 22, 18, 0.82),
    rgba(20, 22, 18, 0.44) 65%,
    rgba(20, 22, 18, 0.16)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 3rem 12px;
}
.hero p {
  font-size: 1.08rem;
  max-width: 620px;
  margin: 1rem 0 1.4rem;
}
.eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero .eyebrow {
  color: #e4c387;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  font-size: 0.82rem;
}
.hero-trust i {
  color: #e4c387;
}
.section {
  padding: 72px 0;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}
.intro .lead,
.lead {
  font-size: 1.12rem;
  color: #3f473f;
}
.image-stack {
  position: relative;
  padding: 0 1rem 1rem 0;
}
.image-stack > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 1rem 1.1rem;
  border-radius: 9px;
  box-shadow: 0 10px 24px #00000012;
}
.image-note span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
.text-link {
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
}
.bg-cream {
  background: var(--cream);
}
.feature {
  height: 100%;
  background: #fff;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature i {
  font-size: 1.4rem;
  color: var(--gold);
}
.feature h3 {
  margin: 0.75rem 0 0.45rem;
}
.feature p {
  color: var(--muted);
  margin: 0;
}
.occasion-card {
  height: 310px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
}
.occasion-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}
.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.occasion-card span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 1rem;
  font-weight: 700;
  font-size: 1.15rem;
}
.bg-dark {
  background: #22251f;
  color: #fff;
}
.testimonials blockquote {
  height: 100%;
  background: #2b2f29;
  margin: 0;
  padding: 1.4rem;
  border-radius: var(--radius);
}
.testimonials footer {
  color: #d8ad6d;
  margin-top: 0.8rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  list-style: none;
}
.faq-list details p {
  margin: 0.75rem 2rem 0.1rem 0;
  color: var(--muted);
}
.cta-band {
  background: var(--gold);
  color: #fff;
  padding: 46px 0;
}
.cta-band h2 {
  font-size: 2rem;
  margin: 0.3rem 0;
}
.cta-band p {
  margin: 0;
}
.site-footer {
  padding: 55px 0 0;
  background: #1d201c;
  color: #c8ccc5;
}
.site-footer h5 {
  color: #fff;
  font-size: 1rem;
}
.site-footer a {
  display: block;
  margin: 0.35rem 0;
}
.footer-bottom {
  border-top: 1px solid #ffffff18;
  margin-top: 35px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer-legal {
  display: flex;
  gap: 1rem;
}
.whatsapp {
  position: fixed;
  z-index: 101;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.55rem;
  box-shadow: 0 6px 18px #0003;
}
.call-float {
  position: fixed;
  z-index: 101;
  bottom: 15px;
  left: 15px;
  padding: 0.65rem 0.85rem;
  background: #20231f;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
}
.page-hero {
  background: var(--cream);
  padding: 54px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  max-width: 900px;
  margin: 0.5rem 0 0.65rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0;
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 1.3rem;
}
.contact-panel {
  background: var(--cream);
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-panel iframe {
  border: 0;
  border-radius: 8px;
  width: 100%;
  height: 230px;
  margin-top: 0.4rem;
}
.contact-panel i {
  color: var(--gold);
  margin-right: 0.35rem;
}
.enquiry-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  border-radius: 7px;
  background: #fff;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.location-grid > a {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0.9rem;
  font-weight: 700;
  transition: 0.15s ease;
}
.location-grid > a:hover {
  border-color: #c6a36d;
  box-shadow: 0 6px 18px #0000000a;
}
.location-grid > a > i {
  color: var(--gold);
  margin-right: 0.3rem;
}
.location-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 500;
  margin-top: 0.25rem;
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 1rem 0;
}
.check-list li {
  margin: 0.45rem 0;
}
.check-list li:before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.5rem;
}
.content-main-image {
  min-height: 390px;
  max-height: 520px;
  object-fit: cover;
}
.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.1rem 0;
}
.event-list-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
}
.event-list-item i {
  color: var(--gold);
}
.seo-copy-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.seo-copy-card h3 {
  margin-top: 0;
}
.seo-copy-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.hall-photo-panel {
  height: 520px;
  background: #eee;
}
.hall-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.halls-showcase .section-heading {
  max-width: 760px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem 0;
  }
  .section {
    padding: 58px 0;
  }
  .hero {
    min-height: 560px;
  }
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    display: block;
  }
  .footer-legal {
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .location-grid,
  .event-list {
    grid-template-columns: 1fr;
  }
  .content-main-image {
    min-height: 300px;
  }
  .hall-photo-panel {
    height: 380px;
  }
  .hero {
    min-height: 520px;
  }
  .hero-content {
    padding: 2.5rem 12px;
  }
  .section {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.45rem;
  }
  .occasion-card {
    height: 220px;
  }
  .image-stack > img {
    height: 350px;
  }
  .footer-bottom,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Clean footer, reusable page sliders, gallery thumbnails and back-to-top */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 58px 0 0;
}
.site-footer .footer-link-list,
.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
}
.site-footer .footer-link-list li,
.site-footer .footer-contact-list li {
  margin: 0;
  padding: 0;
}
.site-footer .footer-link-list a,
.site-footer .footer-contact-list a {
  display: block;
  margin: 0.32rem 0;
  color: #c8ccc5;
  line-height: 1.45;
}
.site-footer .footer-link-list a:hover,
.site-footer .footer-contact-list a:hover {
  color: #fff;
}
.site-footer h5 {
  margin: 0 0 0.7rem;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.site-footer p {
  max-width: 290px;
  line-height: 1.65;
}
.site-footer .contact-location-link {
  margin-top: 0.45rem !important;
  color: #e4c387 !important;
}
.auto-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #eee;
  border-radius: inherit;
}
.auto-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}
.auto-slider img.is-active {
  opacity: 1;
  visibility: visible;
}
.hall-photo-panel,
.landing-photo-panel,
.location-photo-panel {
  height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}
.landing-photo-panel,
.location-photo-panel {
  box-shadow: 0 10px 28px #00000010;
}
.landing-photo-panel .auto-slider,
.location-photo-panel .auto-slider {
  border-radius: var(--radius);
}
.contact-slider-wrap {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px #0000000d;
}
.contact-slider-wrap .auto-slider {
  height: 300px;
  border-radius: var(--radius);
}
.gallery-slider {
  border-radius: 16px;
  overflow: hidden;
  background: #f0eee8;
  box-shadow: 0 12px 30px #0000000d;
}
.gallery-slider .carousel-item {
  height: min(68vh, 680px);
  min-height: 360px;
  position: relative;
}
.gallery-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-weight: 600;
}
.gallery-slider .carousel-control-prev,
.gallery-slider .carousel-control-next {
  width: 8%;
}
.gallery-thumbnails {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.8rem 0 0;
  scrollbar-width: thin;
}
.gallery-thumb {
  flex: 0 0 110px;
  height: 76px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  background: #eee;
  opacity: 0.7;
  cursor: pointer;
  transition: 0.2s ease;
}
.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
.back-to-top {
  position: fixed;
  z-index: 102;
  right: 18px;
  bottom: 82px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 22px #0003;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}
.back-to-top:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(0);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .auto-slider,
  .hall-photo-panel,
  .landing-photo-panel,
  .location-photo-panel {
    height: 380px;
  }
  .contact-slider-wrap .auto-slider {
    height: 260px;
  }
  .gallery-slider .carousel-item {
    height: 52vh;
    min-height: 300px;
  }
  .gallery-thumb {
    flex-basis: 88px;
    height: 62px;
  }
  .back-to-top {
    right: 14px;
    bottom: 76px;
    width: 44px;
    height: 44px;
  }
}

/* Real local-photo sliders with always-visible navigation */
.photo-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #ecebe7;
  border-radius: inherit;
  isolation: isolate;
}
.photo-slider-track,
.photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.photo-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  z-index: 1;
}
.photo-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.photo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slider-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(25, 27, 24, 0.68);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.photo-slider-control:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}
.photo-slider-control.prev {
  left: 14px;
}
.photo-slider-control.next {
  right: 14px;
}
.photo-slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 13px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  padding: 6px 9px;
  border-radius: 30px;
  background: rgba(20, 22, 18, 0.42);
  backdrop-filter: blur(4px);
}
.photo-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: 0.2s ease;
}
.photo-slider-dot.is-active {
  width: 20px;
  border-radius: 10px;
  background: #fff;
}
.hall-home-card {
  height: 100%;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.hall-home-slider,
.hall-home-slider .photo-slider {
  height: 360px;
  border-radius: 0;
}
.hall-home-body {
  padding: 1rem 1.05rem 1.25rem;
}
.hall-home-body h3 {
  margin: 0.25rem 0 0.5rem;
}
.hall-home-body p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.hall-home-slider .photo-slider-control {
  width: 40px;
  height: 40px;
}
.hall-home-slider .photo-slider-control.prev {
  left: 10px;
}
.hall-home-slider .photo-slider-control.next {
  right: 10px;
}
.hall-home-slider .photo-slider-dots {
  bottom: 10px;
}
@media (max-width: 767px) {
  .photo-slider,
  .hall-photo-panel,
  .landing-photo-panel,
  .location-photo-panel {
    height: 380px;
  }
  .hall-home-slider,
  .hall-home-slider .photo-slider {
    height: 300px;
  }
  .photo-slider-control {
    width: 40px;
    height: 40px;
  }
  .photo-slider-control.prev {
    left: 10px;
  }
  .photo-slider-control.next {
    right: 10px;
  }
}

/* Clean, editable gallery slider */
.gallery-viewer {
  position: relative;
  overflow: hidden;
  background: #eeeae2;
  border-radius: 16px;
  box-shadow: 0 12px 30px #0000000d;
}
.gallery-viewer-stage {
  position: relative;
  height: min(68vh, 680px);
  min-height: 360px;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-control {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(20, 22, 18, 0.68);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 16px #0004;
}
.gallery-control:hover {
  background: var(--gold);
}
.gallery-control.prev {
  left: 16px;
}
.gallery-control.next {
  right: 16px;
}
.gallery-count {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 14px;
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  background: rgba(20, 22, 18, 0.62);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.gallery-thumbnails {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.85rem 0 0;
  scrollbar-width: thin;
}
.gallery-thumb {
  flex: 0 0 112px;
  height: 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  background: #eee;
  opacity: 0.62;
  cursor: pointer;
  transition: 0.2s ease;
}
.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--gold);
  opacity: 1;
}
@media (max-width: 767px) {
  .gallery-viewer-stage {
    height: 52vh;
    min-height: 300px;
  }
  .gallery-control {
    width: 40px;
    height: 40px;
  }
  .gallery-control.prev {
    left: 10px;
  }
  .gallery-control.next {
    right: 10px;
  }
  .gallery-thumb {
    flex-basis: 88px;
    height: 62px;
  }
}
.occasion-card.text-only {
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.occasion-card.text-only:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
/* =========================================================
   EVENTS DROPDOWN
   Hover = open
   Click Events = events.php
   ========================================================= */

.events-nav {
  position: relative;
}

.events-main-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.events-arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.events-nav:hover .events-arrow {
  transform: rotate(180deg);
}

/* EVENTS DROPDOWN */

.events-nav {
  position: relative;
}

.events-nav > .events-main-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.events-arrow {
  font-size: 11px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.events-nav:hover .events-arrow {
  transform: rotate(180deg);
}

/*
 * Bootstrap normally gives .dropdown-menu display:none.
 * Override that for desktop hover.
 */
.events-nav > .events-dropdown {
  display: block !important;

  position: absolute;
  top: calc(100% + 6px);
  left: 50%;

  min-width: 245px;
  width: max-content;
  max-width: 300px;

  margin: -14px;
  padding: 8px 0;

  transform: translateX(-50%) translateY(8px);

  background: #fff;

  border: 1px solid #e5dfd5;
  border-radius: 12px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;

  z-index: 9999;
}

/*
 * Hover over Events = open dropdown.
 */
.events-nav:hover > .events-dropdown {
  display: block !important;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

/*
 * Keep the dropdown open while moving the mouse
 * from Events to the dropdown.
 */
.events-nav > .events-dropdown:hover {
  display: block !important;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.events-dropdown li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-dropdown li a {
  display: block;

  width: 100%;
  padding: 10px 18px;

  color: #292929;
  background: transparent;

  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;

  white-space: nowrap;

  transition: background-color 0.15s ease, color 0.15s ease;
}

.events-dropdown li a:hover {
  color: #a56f29;
  background: #f7f2e9;
}

/* MOBILE */

@media (max-width: 991.98px) {
  .events-nav {
    position: relative;
  }

  .events-nav > .events-dropdown {
    position: static;

    display: none !important;

    width: 100%;
    min-width: 0;
    max-width: none;

    margin: 5px 0 0;
    padding: 5px 0;

    transform: none;

    border-radius: 8px;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .events-nav.is-open > .events-dropdown {
    display: block !important;
  }

  .events-dropdown li a {
    white-space: normal;
    padding: 9px 18px;
  }
}

.events-dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-dropdown li a {
  display: block;

  padding: 10px 18px;

  color: #292929;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;

  white-space: nowrap;

  transition: background 0.15s ease, color 0.15s ease;
}

.events-dropdown li a:hover {
  background: #f7f2e9;
  color: #a56f29;
}

/* Keep dropdown open when moving from Events
   to the dropdown itself. */
.events-nav:hover .events-dropdown {
  transition-delay: 0s;
}

/* Mobile */
@media (max-width: 991.98px) {
  .events-nav {
    width: 100%;
  }

  .events-dropdown {
    position: static;
    transform: none;

    width: 100%;
    min-width: 0;

    margin-top: 5px;

    box-shadow: none;
    border-radius: 8px;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    display: none;
  }

  .events-nav.is-open > .events-dropdown {
    display: block;
  }

  .events-dropdown li a {
    padding: 9px 18px;
    white-space: normal;
  }
}
@media (min-width: 992px) {

    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }

}
.navbar .nav-link {
    color: #000000 !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.show {
    color: #222 !important;
}
/* MINI AC HALL text */
/* Desktop */
.navbar-brand small,
.logo small {
    color: #000 !important;
}

/* Mobile */
/* TOP HEADER LOGO */
.site-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-logo-top {
    width: 190px;
    max-height: 58px;
}

.site-logo-bottom {
    width: 190px;
    max-height: 100px;
}

@media (max-width: 767.98px) {

    .site-logo-top {
        width: 155px;
        max-height: 55px;
    }

    .site-logo-bottom {
        width: 180px;
        max-height: 95px;
    }

}
/* =========================================================
   MOBILE SUBMENUS ONLY
   Desktop dropdown behaviour is unchanged.
   ========================================================= */

@media (max-width: 991.98px) {

    /* -----------------------------------------
       OUR HALLS
       ----------------------------------------- */

    .navbar .dropdown > .dropdown-menu {
        position: static !important;

        display: none !important;

        width: 100%;
        min-width: 0;

        margin: 0 !important;
        padding: 4px 0 8px;

        border: 0;
        border-radius: 0;

        background: #f8f6f1;
        box-shadow: none;

        transform: none !important;
    }

    .navbar .dropdown.mobile-dropdown-open > .dropdown-menu {
        display: block !important;
    }

    .navbar .dropdown.mobile-dropdown-open > #hallsDropdown {
        color: #222 !important;
    }

    .navbar .dropdown > #hallsDropdown {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar .dropdown > #hallsDropdown::after {
        margin-left: auto;
        transition: transform .2s ease;
    }

    .navbar .dropdown.mobile-dropdown-open
    > #hallsDropdown::after {
        transform: rotate(180deg);
    }

    .navbar .dropdown-menu .dropdown-item {
        display: block;

        width: 100%;

        padding: 9px 18px;

        color: #333 !important;

        font-size: 15px;
        line-height: 1.4;

        background: transparent;
    }

    .navbar .dropdown-menu .dropdown-item:hover,
    .navbar .dropdown-menu .dropdown-item:focus {
        color: var(--gold-dark) !important;
        background: #eee9df;
    }


    /* -----------------------------------------
       EVENTS
       ----------------------------------------- */

    .events-nav {
        width: 100%;
        position: relative;
    }

    .events-nav > .events-main-link {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
    }

    .events-arrow {
        margin-left: auto;
        transition: transform .2s ease;
    }

    .events-nav.is-open .events-arrow {
        transform: rotate(180deg);
    }

    /*
     * Completely disable desktop hover behaviour
     * on mobile.
     */

    .events-nav:hover > .events-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .events-nav > .events-dropdown {
        position: static !important;

        display: none !important;

        width: 100%;
        min-width: 0;
        max-width: none;

        margin: 0 !important;
        padding: 4px 0 8px;

        transform: none !important;

        border: 0;
        border-radius: 0;

        background: #f8f6f1;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transition: none;
    }

    .events-nav.is-open > .events-dropdown {
        display: block !important;
    }

    .events-dropdown li a {
        display: block;

        width: 100%;

        padding: 9px 18px;

        color: #333 !important;

        font-size: 15px;
        line-height: 1.4;

        white-space: normal;

        background: transparent;
    }

    .events-dropdown li a:hover,
    .events-dropdown li a:focus {
        color: var(--gold-dark) !important;
        background: #eee9df;
    }

}
/* =========================================================
   FINAL MOBILE NAVIGATION FIX
   Desktop navigation is intentionally untouched.
   Bootstrap controls the hamburger.
   ========================================================= */

@media (max-width: 991.98px) {

    /* =====================================================
       BOOTSTRAP MOBILE NAVIGATION
       ===================================================== */

    .navbar-collapse {
        background: #fff;
        padding: 1rem 0;
    }


    /* =====================================================
       OUR HALLS
       Bootstrap adds .show when clicked.
       ===================================================== */

    .navbar .nav-item.dropdown {
        position: relative;
    }

    .navbar .nav-item.dropdown > .dropdown-menu {
        position: static !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 5px 0 8px !important;

        border: 0 !important;
        border-radius: 8px !important;

        background: #f8f6f1 !important;

        box-shadow: none !important;

        transform: none !important;
    }

    /*
     * IMPORTANT:
     * Bootstrap uses .show on the dropdown menu.
     * This is what opens Our Halls on mobile.
     */

    .navbar .nav-item.dropdown > .dropdown-menu.show {
        display: block !important;
    }

    .navbar .nav-item.dropdown > #hallsDropdown {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .navbar .nav-item.dropdown > #hallsDropdown::after {
        margin-left: auto;
        transition: transform 0.2s ease;
    }

    /*
     * Rotate the Bootstrap arrow while the menu is open.
     */

    .navbar
    .nav-item.dropdown
    > #hallsDropdown[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
        display: block;

        width: 100%;

        padding: 10px 18px;

        color: #292929 !important;

        font-size: 15px;
        line-height: 1.4;

        background: transparent !important;

        white-space: normal;
    }

    .navbar
    .nav-item.dropdown
    .dropdown-menu
    .dropdown-item:hover,
    .navbar
    .nav-item.dropdown
    .dropdown-menu
    .dropdown-item:focus {
        color: var(--gold-dark) !important;
        background: #eee9df !important;
    }


    /* =====================================================
       EVENTS
       ===================================================== */

    .events-nav {
        position: relative;
        width: 100%;
    }

    .events-nav > .events-main-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;

        width: 100%;
    }

    .events-arrow {
        margin-left: auto;
        transition: transform 0.2s ease;
    }

    .events-nav.is-open
    > .events-main-link
    .events-arrow {
        transform: rotate(180deg);
    }


    /*
     * Kill desktop hover opening on mobile.
     */

    .events-nav:hover
    > .events-dropdown {
        display: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transform: none !important;
    }


    /*
     * Closed Events menu.
     */

    .events-nav
    > .events-dropdown {
        position: static !important;

        display: none !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        margin: 5px 0 0 !important;
        padding: 5px 0 8px !important;

        transform: none !important;

        border: 0 !important;
        border-radius: 8px !important;

        background: #f8f6f1 !important;

        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transition: none !important;
    }


    /*
     * Open Events menu.
     */

    .events-nav.is-open
    > .events-dropdown {
        display: block !important;
    }


    /*
     * Event links.
     */

    .events-nav
    > .events-dropdown
    li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .events-nav
    > .events-dropdown
    li
    a {
        display: block;

        width: 100%;

        padding: 10px 18px;

        color: #292929 !important;

        font-size: 15px;
        line-height: 1.4;

        white-space: normal;

        background: transparent !important;
    }

    .events-nav
    > .events-dropdown
    li
    a:hover,
    .events-nav
    > .events-dropdown
    li
    a:focus {
        color: var(--gold-dark) !important;
        background: #eee9df !important;
    }


    /* =====================================================
       MOBILE NAV LINKS
       ===================================================== */

    .navbar-nav > li > a,
    .navbar-nav > li > .nav-link {
        color: #20231f !important;
    }

}
/* =========================================================
   FINAL MOBILE MENU
   MOBILE ONLY
   DESKTOP NAVIGATION IS NOT CHANGED
   ========================================================= */

@media (max-width: 991.98px) {

    /* -----------------------------------------------------
       HEADER
       Allow the page to scroll normally on mobile.
       Desktop remains sticky.
       ----------------------------------------------------- */

    .site-header {
        position: relative !important;
        top: auto !important;
    }


    /* -----------------------------------------------------
       HAMBURGER
       ----------------------------------------------------- */

    .navbar-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }


    /* -----------------------------------------------------
       MOBILE COLLAPSE
       ----------------------------------------------------- */

    .navbar-collapse {
        width: 100%;
        background: #fff;
    }


    /* -----------------------------------------------------
       OUR HALLS
       ----------------------------------------------------- */

    .navbar .nav-item.dropdown {
        position: relative;
    }

    .navbar .nav-item.dropdown
    > #hallsDropdown {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navbar .nav-item.dropdown
    > #hallsDropdown::after {
        margin-left: auto;
        transition: transform 0.2s ease;
    }

    .navbar .nav-item.dropdown
    > .dropdown-menu {
        position: static !important;

        display: none !important;

        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 5px 0 8px !important;

        border: 0 !important;
        border-radius: 8px !important;

        background: #f8f6f1 !important;

        box-shadow: none !important;

        transform: none !important;
    }

    .navbar .nav-item.dropdown.mobile-dropdown-open
    > .dropdown-menu {
        display: block !important;
    }

    .navbar .nav-item.dropdown.mobile-dropdown-open
    > #hallsDropdown::after {
        transform: rotate(180deg);
    }

    .navbar .nav-item.dropdown
    > .dropdown-menu
    .dropdown-item {
        display: block;

        width: 100%;

        padding: 10px 18px;

        color: #292929 !important;

        font-size: 15px;
        line-height: 1.4;

        background: transparent !important;

        white-space: normal;
    }

    .navbar .nav-item.dropdown
    > .dropdown-menu
    .dropdown-item:hover,
    .navbar .nav-item.dropdown
    > .dropdown-menu
    .dropdown-item:focus {
        color: var(--gold-dark) !important;
        background: #eee9df !important;
    }


    /* -----------------------------------------------------
       EVENTS
       ----------------------------------------------------- */

    .events-nav {
        position: relative;
        width: 100%;
    }

    .events-nav
    > .events-main-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .events-arrow {
        margin-left: auto;
        transition: transform 0.2s ease;
    }

    .events-nav.is-open
    > .events-main-link
    .events-arrow {
        transform: rotate(180deg);
    }

    .events-nav
    > .events-dropdown {
        position: static !important;

        display: none !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;

        margin: 5px 0 0 !important;
        padding: 5px 0 8px !important;

        transform: none !important;

        border: 0 !important;
        border-radius: 8px !important;

        background: #f8f6f1 !important;

        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transition: none !important;
    }

    .events-nav.is-open
    > .events-dropdown {
        display: block !important;
    }

    .events-nav
    > .events-dropdown
    li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .events-nav
    > .events-dropdown
    li a {
        display: block;

        width: 100%;

        padding: 10px 18px;

        color: #292929 !important;

        font-size: 15px;
        line-height: 1.4;

        white-space: normal;

        background: transparent !important;
    }

    .events-nav
    > .events-dropdown
    li a:hover,
    .events-nav
    > .events-dropdown
    li a:focus {
        color: var(--gold-dark) !important;
        background: #eee9df !important;
    }


    /* -----------------------------------------------------
       VERY IMPORTANT:
       Disable desktop hover behavior on mobile.
       ----------------------------------------------------- */

    .events-nav:hover
    > .events-dropdown {
        display: none !important;
    }

    .events-nav.is-open:hover
    > .events-dropdown {
        display: block !important;
    }

}