:root {
  --color-gold: #a5d066;
  --color-gold-light: #b5da7a;
  --color-gold-dark: #8fb85a;
  --color-bg: #050608;
  --color-bg-elevated: #101218;
  --color-bg-card: #151922;
  --theme-slide-1-bg: linear-gradient(135deg, #f6f1e5, #e5d3a0);
  --theme-slide-2-bg: linear-gradient(135deg, #f5f2ec, #cfdcf4);
  --color-white: #ffffff;
  --color-text: rgba(255, 255, 255, 0.88);
  --color-text-light: rgba(255, 255, 255, 0.7);
  --color-border: rgba(255, 255, 255, 0.12);
  --font-heading: 'Forum', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s ease;
  --fs-body: 15px;
  --space-section-y: 4.5rem;
  --space-section-y-sm: 3.25rem;
  --space-container-x: 1.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 99999;
  padding: 0.5rem 1rem;
  background: var(--color-gold);
  color: var(--color-bg);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
html.has-lenis { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-white);
}

a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }

/* Top bar */
.top-bar {
  background: var(--color-bg-elevated);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
}
.top-bar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}
.top-bar-text { 
  opacity: 0.9; 
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-white);
}

/* Navbar */
.main-nav {
  background: var(--color-bg-elevated) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  padding: 0.75rem 0;
  transition: padding var(--transition), box-shadow var(--transition);
}

@media (max-width: 991.98px) {
  .top-bar-text {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 767.98px) {
  .top-bar-text {
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .top-bar-brand {
    font-size: 1.25rem;
  }
  .main-nav .navbar-brand {
    font-size: 1.45rem;
  }
  .main-nav .d-flex.align-items-center.gap-3 {
    width: 100%;
  }
  .nav-translate-wrap {
    padding: 0.35rem 0.65rem 0.35rem 0.85rem;
  }
  .lang-select {
    min-width: 88px;
  }
}
.main-nav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}
.navbar-logo {
  display: block;
  height: 44px;
  width: auto;
}
.main-nav .nav-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition), left var(--transition);
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Tweak nav sizing on mid-width screens so it stays on one line */
@media (max-width: 1195px) and (min-width: 992px) {
  .main-nav .nav-link {
    font-size: 11px;
    letter-spacing: 0.09em;
    padding: 0.35rem 0.55rem !important;
  }
  .main-nav .navbar-brand {
    font-size: 1.5rem;
  }
  .main-nav .d-flex.align-items-center.gap-3 {
    gap: 0.75rem;
  }
}

/* Navbar toggler – visible on dark background */
.main-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.3rem 0.6rem;
}
.main-nav .navbar-toggler-icon {
  filter: invert(1);
}

/* Responsive navbar layout */
@media (max-width: 991.98px) {
  .main-nav .navbar-collapse {
    background: var(--color-bg-elevated);
    padding: 0.75rem 1rem 1rem;
    margin-top: 0.5rem;
  }
  .main-nav .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .main-nav .navbar-nav .nav-link {
    padding: 0.4rem 0 !important;
  }
  .main-nav .d-flex.align-items-center.gap-3 {
    margin-top: 0.75rem;
    width: 100%;
    justify-content: flex-start;
  }
}
/* Language translator in nav – modern appearance */
.nav-translate-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  position: relative;
  z-index: 9999;
}
.nav-translate-wrap * {
  color: #ffffff !important;
}
.lang-select {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  padding: 0.2rem 1.5rem 0.2rem 0 !important;
  border: none !important;
  background: transparent !important;
  color: #ffffff !important;
  cursor: pointer;
  min-width: 100px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a5d066' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
}
.lang-select option {
  background: var(--color-bg);
  color: var(--color-text) !important;
}
.nav-translate-wrap:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.main-nav.scrolled .nav-translate-wrap {
  background: rgba(26, 26, 26, 0.04);
  border-color: var(--color-border);
}
.main-nav.scrolled .nav-translate-wrap:hover {
  background: rgba(26, 26, 26, 0.08);
  border-color: var(--color-gold);
}
.nav-translate-icon {
  font-size: 1rem;
  color: var(--color-gold);
  flex-shrink: 0;
}
.main-nav.scrolled .nav-translate-icon { color: var(--color-gold); }
/* Hide Google Translate top bar (custom lang dropdown used) */
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate.goog-te-banner-frame,
.goog-te-banner-frame,
body > div[class*="goog-te-banner"],
body > .skiptranslate,
iframe.skiptranslate { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; position: absolute !important; left: -9999px !important; }
body { top: 0 !important; }

/* Hero with video background */
.hero-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  overflow: hidden;
}
.hero-video {
  color: var(--color-white);
}
.hero-video-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(0, 0, 0, 0.35), rgb(0 0 0 / 64%));
  z-index: 1;
}
.hero-video-content {
  position: relative;
  z-index: 2;
  /* max-width: 960px; */
  padding: 3.5rem 1.5rem 3rem;
}
.hero-video-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* Animated arc line under "Hotel Technology" */
.hero-arc-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.hero-arc-svg {
  display: block;
  width: 100%;
  min-width: 340px;
  max-width: 480px;
  height: auto;
  margin: -0.4em auto 0;
  line-height: 0;
  color: var(--color-gold);
}
.hero-arc-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
/* Draw arc when in viewport */
.hero-arc-animate.visible .hero-arc-path {
  animation: heroArcDraw 1.2s ease-out forwards;
}
.hero-arc-animate {
  opacity: 1 !important;
  transform: none !important;
}
@keyframes heroArcDraw {
  to { stroke-dashoffset: 0; }
}
.hero-video-cta-wrap {
  margin-bottom: 1.8rem;
}
.hero-video-cta-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: var(--color-gold);
  color: var(--color-bg);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.35rem;
  box-shadow: 0 4px 24px rgba(165, 208, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.hero-video-cta-circle:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.9);
  background: var(--color-gold-light);
  box-shadow: 0 8px 32px rgba(165, 208, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  color: var(--color-bg);
}
.hero-video-cta-circle:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}
.hero-video-cta-icon {
  font-size: 1.7rem;
  opacity: 0.95;
}
.hero-video-tagline {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #ffffff;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  margin-top: 0.3rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-meta-item i {
  font-size: 1rem;
  color: var(--color-gold);
}
.hero-meta-mobile {
  display: none;
}

/* Section headings */
.section-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.2rem;
}
.section-title-no-underline { border: none; }

/* Global responsive typography + spacing */
@media (max-width: 991.98px) {
  :root {
    --fs-body: 14.5px;
    --space-section-y: 4rem;
    --space-section-y-sm: 3rem;
    --space-container-x: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  :root {
    --fs-body: 14px;
    --space-section-y: 3.5rem;
    --space-section-y-sm: 2.75rem;
    --space-container-x: 1rem;
  }
  .section-label {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  }
  .section-title {
    margin-bottom: 1rem;
  }

  .hero-meta {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 0.4rem;
  }
  .hero-meta-mobile {
    display: flex;
  }
}
@media (max-width: 575.98px) {
  :root {
    --fs-body: 13.75px;
    --space-section-y: 3.15rem;
    --space-section-y-sm: 2.5rem;
  }
}

/* About layout */
.section-about-amenities {
  background: var(--color-bg);
  position: relative;
  padding: 1rem 0 var(--space-section-y);
}
.section-about-amenities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.section-about-amenities .container { position: relative; z-index: 1; }
.section-about-amenities .about-side-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-about-amenities .about-col-inner {
  text-align: center;
}
.section-about-amenities .about-col-inner p,
.section-about-amenities .about-col-inner .section-label,
.section-about-amenities .about-col-inner .section-title {
  margin-left: auto;
  margin-right: auto;
}

/* About stats (counters under About section) */
.about-stats-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.about-stats-heading::before,
.about-stats-heading::after {
  content: '';
  flex: 1 1 auto;
  height: .5px;
  background: rgb(255, 255, 255);
  transform: scaleX(0);
  transition: transform 0.9s ease-out;
}
.about-stats-heading::before {
  transform-origin: right;
}
.about-stats-heading::after {
  transform-origin: left;
}
.about-stats-heading.visible::before,
.about-stats-heading.visible::after {
  transform: scaleX(1);
}
.about-stats-heading span {
  display: inline-block;
  padding: 0.4rem 1.8rem;
  border-radius: 999px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-stats {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(165, 208, 102, 0.16),
    rgba(165, 208, 102, 0.04)
  );
  border: 1px solid rgba(165, 208, 102, 0.38);
}
.about-stat {
  position: relative;
  padding-top: 1rem;
}
.about-stat-number {
  font-size: clamp(2.8rem, 3.4vw, 3.8rem);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.about-stat-label {
  font-size: 0.96rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-light);
}

/* Vertical dividers between stats – animated from bottom to top when visible */
.about-stats [class*="col-"]:not(:first-child) {
  position: relative;
}
/* base line */
.about-stats [class*="col-"]:not(:first-child)::before,
.about-stats [class*="col-"]:not(:first-child)::after {
  content: '';
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  left: 0;
  width: 1px;
}
.about-stats [class*="col-"]:not(:first-child)::before {
  background: rgba(255, 255, 255, 0.18);
}
/* animated white line */
.about-stats [class*="col-"]:not(:first-child)::after {
  background: rgba(255, 255, 255, 0.9);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.8s ease-out;
}

.about-stats.visible [class*="col-"]:not(:first-child)::after {
  transform: scaleY(1);
}
.about-stats.visible [class*="col-"]:nth-child(2)::after {
  transition-delay: 0s;
}
.about-stats.visible [class*="col-"]:nth-child(3)::after {
  transition-delay: 0.2s;
}
.about-stats.visible [class*="col-"]:nth-child(4)::after {
  transition-delay: 0.4s;
}
.section-about-amenities p { font-size: 1rem; }

/* Center column: arched image + curved marquee text (like reference) */
.about-arch-center {
  position: relative;
  margin: 0 auto;
}
.about-arch-svg {
  width: 100%;
  height: auto;
  display: block;
}
.about-arch-text {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  fill: var(--color-gold);
}
.section-about-amenities .about-row-tight .col-lg-4 { padding-left: 0; padding-right: 0; }
.section-about-amenities .about-arch-center { padding: 0; margin: 0; }
.section-about-amenities .about-arch-svg {
  display: block;
  margin: 0;
}
.about-arch-curve-border {
  stroke: rgb(0, 0, 0);
  stroke-width: 3;
}

/* (legacy rectangular marquee + image styles removed in favor of SVG arch) */
#speakers {
  background: var(--color-bg-elevated);
  padding-top: var(--space-section-y-sm) !important;
  padding-bottom: var(--space-section-y-sm) !important;
}
#speakers .speaker-heading {
    padding: 12px 0 20px 0;
}
/*#speakers .speaker-heading h2 {*/
/*    font-size: 35px;*/
/*    font-weight: 700;*/
/*    color: #a5d066;*/
/*}*/
#speakers .speakers .img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all 1s ease-out;
}
#speakers .speakers-wrap .speaker-img {
    background-color: #9ec761;
}
#speakers .speakers .speaker-social {
    position: absolute;
    z-index: 9;
    top: 91%;
    left: 43%;
    background: #007ab7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease-out;
}
#speakers .speakers:hover .speaker-social {
    opacity: 1;
    animation: icons 1.5s linear infinite;
}
#speakers .speakers .speaker-social a {
    color: #fff;
    font-size: 25px;
}
#speakers .speaker-info {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: #fff;
}
#speakers .speaker-info h4 {
    font-size: 26px;
    font-weight: 700;
    color: #8fb85a;
}
#speakers .speaker-info h5 {
    font-weight: 600;
    color: #8fb85a;
}
#speakerSlider {
  display: none;
}

/* Testimonial */
.activity {
    padding: 2rem 0 2rem 0;
    background: #8FB85A;
}

#activities h2 {
  color: #000;
  font-size: clamp(1.9rem, 3.1vw, 3.7rem);
  /*font-size: 40px;*/
  /*font-weight: 700;*/
}

.accordions-wrap {
    flex-direction: row;
    margin: calc(-7px / 2);
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
    height: 450px;
    overflow: hidden;
    z-index: 1;
}

.accordions-box {
    margin: calc(7px / 2);
    position: relative;
    transition: flex-grow 0.5s ease;
    flex-grow: 2;
}

.accordions-box:before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    border-radius: 60px;
    z-index: 1;
    content: "";
}

.accordions-box .boxes-image {
    max-width: 100%;
    border: none;
    border-radius: 60px;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    transition: opacity 300ms ease;
}

.accordions-box .accordions-content {
    justify-content: flex-end;
    position: absolute;
    align-items: start;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    border-radius: 60px;
    opacity: 0;
    z-index: 2;
    background-color: rgb(0 0 0 / 0.5);
    transition: opacity 300ms ease;
}

.accordions-title {
    text-align: left;
    font-size: 24px;
    align-self: stretch;
    color: #fff;
}

.accordions-description {
    color: #fff;
}

.accordions-btns {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.7em;
    letter-spacing: 1.2px;
    align-self: flex-start;
    padding: 7px 15px 7px 15px;
    color: #fff;
    background-color: #49262d;
    border-radius: 0 0 0 0;
    display: inline-block;
    fill: #fff;
    text-align: center;
    transition: all 0.3s;
}

.accordions-wrap:hover .accordions-box {
    flex-grow: 1;
}

.accordions-wrap .accordions-box:hover,
.accordions-wrap .accordions-box.active {
    flex-grow: 4;
    z-index: 3;
}

.accordions-box:hover .accordions-content,
.accordions-box.active .accordions-content {
    opacity: 1;
}

.boxes-image {
    transition: transform 0.5s ease;
}

.accordions-box:hover .boxes-image {
    transform: scale(1);
}
/* Sponsor */
.sponsor {
    padding: 2rem 0px;
    border-radius: 0px 0px 40px 40px;
}
#sponsors-logo img {
    width: 200px !important;
}
.sponsor-strip {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
    margin-bottom: 30px;
}
.left {
    animation: scroll-left 70s linear infinite;
}
.right {
    animation: scroll-right 95s linear infinite;
}
@keyframes scroll-left{
  0% {
      transform: translateX(10%);
  }
  100% {
      transform: translateX(-90%);
  }
}
@keyframes scroll-right {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0%);
  }
}

/* #sponsors .supporters-wrap {
    margin-bottom: 10px;
}
.supporter {
    padding: 10px 8px;
}
.supporter-logo {
    cursor: pointer;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 30px rgb(0 0 0 / .05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
}
.supporter img {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
    height: auto;
}
#sponsors .supporter:hover img{
    transform: scale(1.05);
} */
#sponsors h2 {
    font-size: clamp(1.9rem, 3.1vw, 3.7rem);
    /* font-weight: 600; */
    margin-bottom: 1.4rem;
}
/* Tickets */
.section-tickets {
  position: relative;
  background-image:
  radial-gradient(circle at top,
  rgba(166, 208, 102, 0.248) 0%,
  rgba(5, 6, 8, 0.338) 65%,
  rgba(5, 6, 8, 0.189) 100%
  ), url("../images/hl-layer3s.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-section-y) 5rem calc(var(--space-section-y) + 3.5rem);
}
.ticket-section-title {
  font-size: clamp(1.9rem, 3.1vw, 3.7rem);
  /* font-weight: 600; */
  margin-bottom: 1.4rem;
}
.ticket-card {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  border-radius: 32px;
  padding: 2.2rem 2.1rem 2.1rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  outline: 2px solid rgba(255, 255, 255, 0.584);
  outline-offset: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}
.ticket-card-featured {
  background: linear-gradient(135deg, #fff2c2, var(--color-gold));
  border-color: rgba(0, 0, 0, 0.45);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.55);
  position: relative;
}
.ticket-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0, 0, 0, 0.22);
  pointer-events: none;
}
.ticket-card:hover {
  transform: translateY(-20px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.62);
  border-color: var(--color-gold);
}
.ticket-header {
  margin-bottom: 1.4rem;
}
.ticket-audience {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
}
.ticket-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 0.7rem;
}
.ticket-badge-featured {
  border-color: rgb(0, 0, 0);
  color: rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 26px rgba(165, 208, 102, 0.55);
}
.ticket-title {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #000;
}
.ticket-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
}
.ticket-caption {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
}
.ticket-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-light);
}
.ticket-list li + li {
  margin-top: 0.25rem;
}
.ticket-cta-wrap {
  margin-top: auto;
}
/* contactus section */
#enquiries {
    background: #8FB85A;
}
#enquiries h2 {
    color: #000;
    font-size: clamp(1.9rem, 3.1vw, 3.7rem);
    /*font-size: 40px;*/
    /*font-weight: 700;*/
}
.contact-card {
    background: #000;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 8px 25px rgb(0 0 0 / .12);
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #a5d066 0%, #1b3738 100%);
}
.contact-category {
    color: #8FB85A;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    padding: 10px 14px;
    background: rgb(165 208 102 / .1);
    border-radius: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    max-width: fit-content;
}
.contact-title {
    color: #1b3738;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}
.contact-subtitle {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: .3px;
}
.contact-card .divider {
    width: 50px;
    height: 3px;
    background: #a5d066;
    margin-bottom: 15px;
    border-radius: 2px;
}
.contact-detail {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.contact-detail:last-child {
    margin-bottom: 0;
}
.detail-value {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}
.detail-value a {
    color: #1b3738;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.detail-value a:hover {
    color: #a5d066;
}
.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgb(27 55 56 / .18);
}
.passModal .modal-header {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}
.thanks-popup.hidden {
    display: none;
}
.thanks-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999
}
.thanks-popup.hidden {
    display: none
}
.thanks-popup.show {
    display: flex
}
.thanks-message {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgb(0 0 0 / .2)
}
.hidden {
    display: none
}
/* Staggered “staircase” layout for ticket cards (desktop only) */
@media (min-width: 992px) {
  .section-tickets .ticket-card {
    transform: translateY(0);
  }

  .section-tickets .col-lg-4:nth-child(1) .ticket-card {
    transform: translateY(50px);
  }
  .section-tickets .col-lg-4:nth-child(2) .ticket-card {
    transform: translateY(0);
  }
  .section-tickets .col-lg-4:nth-child(3) .ticket-card {
    transform: translateY(-50px);
  }

  .section-tickets .ticket-card:hover {
    transform: translateY(-6px); /* hover still lifts slightly */
  }
}

/* Global community / audience mix – text stats (no map) */
.section-community {
  background: var(--color-bg-elevated);
  padding-top: var(--space-section-y-sm) !important;
  padding-bottom: var(--space-section-y-sm) !important;
}
.community-summary {
  font-size: 0.98rem;
  color: var(--color-text-light);
}
.community-breakdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.community-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--color-gold);
  background: radial-gradient(circle at top, rgba(165, 208, 102, 0.14), rgba(10, 10, 10, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}
.community-pill-value {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}
.community-pill-label {
  margin-top: 0.1rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.community-gif-wrap {
  text-align: center;
}

/* Why Attend – horizontal highlight slider (cards + media) */
.section-why-attend-slider {
  background: var(--color-gold-dark);
  padding: var(--space-section-y) 0 calc(var(--space-section-y) + 0.5rem);
}
.why-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.section-why-attend-slider .section-label {
  margin-bottom: 0.4rem;
}
.section-why-attend-slider .section-title {
  margin-bottom: 0;
  color: #000;
}
.why-slider-controls {
  display: inline-flex;
  gap: 0.4rem;
}
.why-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgb(0, 0, 0);
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.why-slider-arrow i {
  font-size: 1.1rem;
  color: #b5da7a;
}
.why-slider-arrow:hover {
  box-shadow: 0 8px 18px var(--color-gold-light);
  transform: translateY(-1px);
}
.whyAttendSwiper {
  width: 100%;
  padding: 0.5rem 0 1.25rem;
}
.whyAttendSwiper .swiper-wrapper {
  align-items: stretch;
}
.whyAttendSwiper .swiper-slide {
  height: auto;
}
.why-slide-card {
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
  min-height: 270px;
  max-height: 300px;
  background: transparent;
}
.why-slide-info {
  flex: 0 0 40%;
  background: #181411;
  padding: 1.6rem 1.7rem 1.7rem;
  border-radius: 26px;
  color: #f6f2ec;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.why-slide-media {
  flex: 0 0 60%;
  border-radius: 26px;
  overflow: hidden;
  /* box-shadow: 0 22px 38px rgba(0, 0, 0, 0.24); */
}
.why-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-slide-title {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
  color: #ffffff;
}
.why-slide-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.why-slide-text {
  font-size: 1.1rem;
  color: rgba(246, 242, 236, 0.78);
  margin: 0;
}
.why-slide-progress {
  width: 90%;
  height: 2px;
  border-radius: 999px;
  background: rgba(246, 242, 236, 0.18);
  overflow: hidden;
}
.why-slide-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: rgba(246, 242, 236, 0.72);
  transition: width 5s linear;
}

.why-slider-pagination {
  text-align: center;
}
.why-slider-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  margin: 0 4px !important;
}
.why-slider-pagination .swiper-pagination-bullet-active {
  background: #000000;
  width: 16px;
}

@media (min-width: 992px) {
  .section-why-attend-slider {
    padding: 5rem 0;
  }
}

/* Event themes – pinned viewport section, smooth overlay like scroll-overlap, no extra tail */
.section-event-themes {
  background: var(--color-bg);
  /* margin-top: 3rem; */
}
.event-themes-row {
  min-height: 100vh;
}
@media (min-width: 992px) {
  .event-themes-left,
  .event-themes-right {
    height: 100vh;
    display: flex;
    align-items: center;
  }
}
.event-themes-left {
  position: relative;
  color: #ffffff;
  background-image:
    linear-gradient(135deg, rgb(63 123 35 / 94%), rgb(29 71 26 / 83%)),
    url("https://images.unsplash.com/photo-1511578314322-379afb476865?w=1600&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.event-themes-left-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 3.5rem;
  text-align: center;
}
.event-themes-left-inner .section-label {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
}
.event-themes-left-inner .section-title {
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  margin-bottom: 1.4rem;
}
.event-themes-left-inner p {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 400;
}
.event-themes-right {
  position: relative;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-gold);
  box-shadow:
    0 0 0 2px var(--color-bg-elevated),
    0 0 0 3px var(--color-gold);
  inset: 0;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-theme-slide {
  position: absolute;
  border: 1px solid var(--color-gold);
  box-shadow:
    0 0 0 2px var(--color-bg-elevated),
    0 0 0 3px var(--color-gold);
  inset: 0;
  margin: auto;
  padding: 2.2rem 3.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1.3s ease-out;
}
.theme-slide-1 {
  z-index: 1;
  background: var(--theme-slide-1-bg);
  transform: translateY(0);
}
.theme-slide-2 {
  z-index: 2;
  background: var(--theme-slide-2-bg);
  transform: translateY(100%);
}

.section-event-themes.is-theme-2-active .theme-slide-1 {
  transform: translateY(-100%);
}
.section-event-themes.is-theme-2-active .theme-slide-2 {
  transform: translateY(0);
}
.event-theme-kicker {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-bg);
  margin-bottom: 0.4rem;
  text-align: center;
}
.event-theme-heading {
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
  text-align: center;
  color: #000000;
  font-weight: 600;
}
.event-theme-list {
  margin: 0;
  font-size: 1.05rem;
  color: #000000;
  list-style: none;
  width: 100%;
  max-width: 420px;
  text-align: left;
}
.event-theme-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  justify-content: flex-start;
}
.event-theme-list li + li {
  margin-top: 0.35rem;
}
.event-theme-icon {
  font-size: 1rem;
  color: var(--color-gold);
  margin-top: 0.1rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}


/* Event themes – vertical pagination dots on right column */
.event-themes-pagination {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 20;
}

/* Responsive fixes (tablet + mobile) */
@media (max-width: 1399px) {
    .contact-card {
        padding: 40px 20px;
    }
}
@media (max-width: 1199px) {
    .contact-card {
        padding: 25px;
    }
}

@media (max-width: 991.98px) {
  .section-tickets {
    padding: 4rem 1.75rem 6rem;
  }

  .community-pill-value {
    font-size: 1.2rem;
  }

  /* Event themes: make slides static (no overlap) on tablet */
  .event-themes-row {
    min-height: auto;
  }
  .event-themes-left,
  .event-themes-right {
    height: auto;
  }
  .event-themes-right {
    overflow: visible;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.25rem 0 1.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .event-theme-slide {
    position: relative;
    inset: auto;
    margin: 0;
    transform: none !important;
    width: 100%;
  }
  .theme-slide-1,
  .theme-slide-2 {
    transform: none !important;
  }
  .event-themes-pagination {
    display: none;
  }
  .event-themes-left-inner {
    padding: 3rem 1.75rem;
  }
  .event-theme-slide {
    padding: 1.75rem 1.5rem;
  }
  .event-themes-left-inner p {
    font-size: 1.05rem;
  }
  .event-theme-kicker {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
  }
  .event-theme-heading {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .event-theme-list {
    font-size: 1rem;
  }
  .event-theme-icon {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
  }
  .event-theme-list li + li {
    margin-top: 0.3rem;
  }
  .why-slide-info {
    flex: 0 0 60%;
  }
  .why-slide-media {
    flex: 0 0 40%;
  }
  .why-slide-title {
    font-size: 1.55rem;
  }
  .why-slide-text {
    font-size: 1rem;
  }

}

@media (max-width: 767.98px) {
  .contact-card {
        padding: 35px;
    }
    .contact-title {
        font-size: 22px;
    }
  .hero-video-content {
    padding: 3rem 1rem 2.5rem;
  }
  .hero-arc-svg {
    min-width: 0;
    width: min(92vw, 420px);
  }
  .hero-video-cta-circle {
    width: 112px;
    height: 112px;
    font-size: 0.75rem;
  }
  .hero-video-tagline {
    font-size: 1.1rem;
  }

  .section-tickets {
    padding: 3.5rem 1rem 5rem;
  }

  .why-slide-card {
    flex-direction: column;
    max-height: none;
    gap: 0.9rem;
  }
  .why-slide-info,
  .why-slide-media {
    flex: 1 1 auto;
  }
  .why-slide-media {
    display: none;
  }

  .event-themes-row {
    min-height: auto;
  }
  .event-themes-left,
  .event-themes-right {
    height: auto;
  }
  .event-themes-right {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
  }
  .event-themes-left-inner {
    padding: 2.5rem 1rem;
  }
  .event-theme-slide {
    position: relative;
    inset: auto;
    margin: 0;
    padding: 1.5rem 1.15rem;
  }
  .event-themes-left-inner p {
    font-size: 1rem;
  }
  .event-theme-kicker {
    font-size: 0.98rem;
    letter-spacing: 0.14em;
  }
  .event-theme-heading {
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
  }
  .event-theme-list {
    font-size: 0.98rem;
  }
  .event-theme-icon {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .event-themes-left-inner {
    padding: 2.25rem 0.95rem;
  }
  .event-themes-right {
    padding: 0.9rem 0 1.25rem;
    gap: 0.85rem;
  }
  .event-theme-slide {
    padding: 1.25rem 1rem;
  }
  .event-theme-heading {
    font-size: 1.08rem;
  }
  .event-theme-list {
    font-size: 0.95rem;
  }
}
.event-themes-dot {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
  padding: 0;
  outline: none;
  cursor: pointer;
  opacity: 0.55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: rgb(255, 255, 255);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.event-themes-dot.is-active {
  background: var(--color-gold);
  border-color: var(--color-bg);
  opacity: 1;
  transform: scale(1.2);
  color: #000;
}


/* All primary buttons – double gold border, dark default, gold + black text on hover */
.btn.btn-primary {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.6rem 1.8rem;
  border-radius: 0;

  border: 1px solid var(--color-gold) !important;
  background-color: var(--color-bg) !important;
  background-image: none !important;
  color: #ffffff !important;

  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 3px var(--color-gold) !important;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.btn.btn-primary:hover {
  background-color: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  color: #000 !important;
}

/* Simple rooms placeholder */
.section-simple {
  background: var(--color-bg-elevated);
  color: var(--color-text);
}

/* Footer */
.footer {
  background: var(--color-bg-elevated);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border);
}
.footer-logo {
  display: block;
  height: 60px;
  width: auto;
}
.footer-tagline {
  color: var(--color-text-light);
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 600;
  margin: 25px 0;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a i {
  color: var(--color-gold);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--color-gold); }
.footer-links a:hover i { color: var(--color-gold-light); }
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}
.footer-info i { color: var(--color-gold); flex-shrink: 0; font-size: 1.2rem; }
.footer-info a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-info a:hover { color: var(--color-gold); }
.footer-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold-light);
  color: var(--color-bg);
  box-shadow: 0 0 18px rgba(165, 208, 102, 0.35);
  transform: translateY(-1px);
}
.footer-bottom {
  border-top: 1px solid var(--color-border);
}
.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-legal {
  font-size: 0.9rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-legal a:hover { color: var(--color-gold); }
.footer-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.35rem;
}

/* Footer layout refinements */
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-top .row > [class*="col-"] {
  min-height: 100%;
}

@media (max-width: 767.98px) {
  #speakerRow {
    display: none;
  }
  #speakerSlider {
    display: block;
  }
  .footer-links li {
    margin-bottom: 0.35rem;
  }
  .footer-bottom .text-md-start,
  .footer-bottom .text-md-end {
    text-align: center !important;
  }
}

/* Modal */
.modal-content {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.modal-header { border-bottom-color: var(--color-border); }
.modal-body .form-control {
  background: var(--color-bg-elevated);
  border-color: var(--color-border);
  color: var(--color-white);
}
.modal-body .form-control:focus {
  border-color: var(--color-gold);
}

.section-gallery-collage {
  background: var(--color-bg);
  padding-top: var(--space-section-y);
  padding-bottom: calc(var(--space-section-y) + 0.5rem);
}
.gallery-intro {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}
.gallery-collage-wrap {
  position: relative;
  margin: 2.5rem auto 0;
  min-height: 320px;
}
.gallery-card {
  position: absolute;
  border-radius: 26px;
  isolation: isolate;
  background-image: var(--gallery-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
  z-index: 2;
  pointer-events: none;
}
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--gallery-next, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}
.gallery-card.is-fading::after {
  opacity: 1;
}
.gallery-card-lg {
  inset: 0;
  left: 20%;
  max-width: 520px;
  height: 100%;
}
.gallery-card-md {
  width: 360px;
  height: 260px;
  right: 0;
  top: 10%;
}
.gallery-card-sm {
  width: 280px;
  height: 200px;
  right: 20%;
  bottom: -5%;
  transform: translateX(-50%);
}

.gallery-card-xs {
  width: 280px;
  height: 200px;
  left: 2%;
  top: 14%;
  transform: rotate(-5deg);
}

@media (max-width: 991.98px) {
  .gallery-collage-wrap {
    max-width: 100%;
    min-height: 0;
    display: flex;
    gap: 1.3rem;
  }
  .gallery-card,
  .gallery-card-lg,
  .gallery-card-md,
  .gallery-card-sm,
  .gallery-card-xs {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    transform: none;
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slightly different scroll-in for community GIF */
.community-gif.animate-on-scroll {
  opacity: 0;
  transform: scale(0.9) translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.community-gif.animate-on-scroll.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-slider { min-height: 80vh; }
  .hero-content { text-align: left; }
  .section-about-amenities .about-side-col { margin-top: 1rem; }
}

@media (max-width: 767.98px) {
  .hero-event-name { font-size: 1.8rem; }
  .hero-tagline { font-size: 1.1rem; }
  .about-image-curved-wrap { border-radius: 60px 60px 0 0; }
  .gallery-collage-wrap{flex-direction: column;}
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

