:root {
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --gold-pale: #f0dfa0;
  --navy: linear-gradient(180deg, #164600, #457d00);
  --navy-light: #243058;
  --cream: #faf7f0;
  --cream-dark: #f0ead8;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
}

.cinzel {
  font-family: 'Cinzel', serif;
}

/* ===== TOP BAR ===== */
#topbar {
  background: var(--navy);
  color: #ffffff;
  font-size: 16px;
  padding: 6px 0;
}

#topbar a:hover {
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}

/* ===== HEADER ===== */
#mainHeader {
  background: linear-gradient(rgb(255 255 255), rgb(255 255 255 / 91%)), url(./images/header-bg.gif);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 46, 0.2);
  transition: all 0.4s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#mainHeader.scrolled {
  box-shadow: 0 4px 30px rgba(26, 35, 64, 0.12);
}

.logo img {
  border-radius: 50%;
  width: 100px;
  object-fit: cover;
}

.logo-text {
  background: linear-gradient(135deg, #214c00, #a1d862);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-text1 {
  font-size: 37px;
  font-family: "Teko", sans-serif;
  font-weight: 600;
  line-height: 37px !important;

}

.title-text2 {
  font-size: 25px;
  font-family: "Teko", sans-serif;
  font-weight: 600;
  line-height: 25px !important;
}

.title-text3 {
  font-size: 16px;
  font-family: "Teko", sans-serif;
  color: #15315b;
  font-weight: 700;
}

/* NAV DROPDOWN */
.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 14px;
  right: 14px;
}

.dropdown {
  position: absolute;
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid rgba(184, 150, 46, 0.2);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(26, 35, 64, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #1f1f2b;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  letter-spacing: 0.5px;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover,
.dropdown a.active {
  background: rgba(184, 150, 46, 0.08);
  color: var(--gold);
}

.dropdown a.active {
  font-weight: 600;
  background: rgba(184, 150, 46, 0.12);
}

.dropdown {
  overflow: hidden;
  border-radius: 12px;
}

/* JOIN US BTN */
.join-btn {
  background: linear-gradient(135deg, var(--gold), #8b6914);
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  box-shadow: 0 4px 20px rgba(184, 150, 46, 0.4);
  transition: all 0.3s !important;
  display: inline-block !important;
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 46, 0.5) !important;
}

.join-btn::after {
  display: none !important;
}

/* ===== HERO SLIDER ===== */
#hero {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: linear-gradient(to bottom, rgba(26, 35, 64, 0.3), rgba(26, 35, 64, 0.7)), url('./images/slide/slide1.png');
}

.slide-2 {
  background-image: linear-gradient(to bottom, rgba(26, 35, 64, 0.2), rgba(26, 35, 64, 0.75)), url('./images/slide/slide2.png');
}

.slide-3 {
  background-image: linear-gradient(to bottom, rgba(26, 35, 64, 0.2), rgba(26, 35, 64, 0.7)), url('./images/slide/slide3.png');
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 15, 35, 0.96) 0%, rgba(10, 15, 35, 0.7) 60%, transparent 100%);
  padding: 48px 60px 44px;
}

.slide-badge {
  display: inline-block;
  background: rgba(184, 150, 46, 0.25);
  border: 1px solid rgba(184, 150, 46, 0.5);
  color: var(--gold-pale);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.slide-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(184, 150, 46, 0.5);
  transition: all 0.3s;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(184, 150, 46, 0.6);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: rgba(184, 150, 46, 0.4);
  border-color: var(--gold);
}

#prevSlide {
  left: 24px;
}

#nextSlide {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 52px;
  right: 60px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== WAVE DIVIDER ===== */
.wave-top {
  margin-top: -2px;
}

.wave-bottom {
  margin-bottom: -2px;
}

/* ===== SECTION TITLE ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--navy) !important;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

/* ===== ABOUT / FOUNDER SECTION ===== */
#about {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.founder-card {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 500px;
}

.founder-text p {
  color: #00112a;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.founder-text {
  margin-top: 50px;
}

.founder-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.85) sepia(0.2);
}

.founder-body {
  padding: 28px;
}

.founder-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
}

.founder-accent {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 14px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #b48a2c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(5px);
}

.read-more:hover {
  color: #8a6b1f;
}

.founder-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.founder-tag {
  display: inline-block;
  background: rgba(184, 150, 46, 0.2);
  border: 1px solid rgba(184, 150, 46, 0.4);
  color: var(--gold-pale);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(184, 150, 46, 0.15);
  box-shadow: 0 20px 60px rgba(26, 35, 64, 0.08);
  position: relative;
  height: 100%;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
  border-radius: 24px 24px 0 0;
}

.about-card p {
  color: #00112a;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.read-more-btn:hover {
  gap: 14px;
  border-color: var(--gold);
}

/* ===== QUOTE + MESSAGE SECTION ===== */
#quoteMessage {
  background: var(--navy);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

#quoteMessage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(184,150,46,0.08)'/%3E%3C/svg%3E") repeat;
}

.quote-card {
  background: rgb(3 35 80);
  border: 1px solid rgba(184, 150, 46, 0.2);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  backdrop-filter: blur(10px);
  height: 100%;
}

.giant-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  line-height: 0.6;
  color: rgba(184, 150, 46, 0.12);
  position: absolute;
  top: 20px;
  left: 24px;
  font-style: italic;
  pointer-events: none;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-author {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quote-month {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

@keyframes quoteGlow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(184, 150, 46, 0.1);
  }

  50% {
    box-shadow: 0 0 60px rgba(184, 150, 46, 0.25);
  }
}

.quote-card {
  animation: quoteGlow 4s ease-in-out infinite;
}

.message-card {
  background: rgb(3 35 80);
  border: 1px solid rgba(184, 150, 46, 0.2);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.message-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.message-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.message-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(26, 35, 64, 0.9));
}

.message-body {
  padding: 28px 32px 36px;
}

.message-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: white;
  margin-bottom: 12px;
}

.message-body p {
  font-size: 16px;
  color: rgb(255 255 255);
  line-height: 29px;
  letter-spacing: 0.5px;
  padding-top: 15px;
}

/* ===== CANDLE / TRIBUTE SECTION ===== */
#tribute {
  background: radial-gradient(ellipse at center, #1a0f00 0%, #0d0d1a 60%, #000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tribute-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 20%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.15), transparent),
    radial-gradient(1px 1px at 40% 85%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 10% 60%, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 90% 45%, rgba(255, 255, 255, 0.15), transparent);
}

.candle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  cursor: pointer;
  transition: transform 0.4s;
}

.candle-wrap:hover {
  transform: translateY(-8px);
}

/* Candle SVG */
.candle-svg {
  width: 60px;
  filter: drop-shadow(0 0 12px rgba(255, 180, 0, 0.6));
}

@keyframes flicker {

  0%,
  100% {
    transform: scaleX(1) scaleY(1) rotate(-1deg);
    opacity: 1;
  }

  25% {
    transform: scaleX(0.9) scaleY(1.05) rotate(1deg);
    opacity: 0.9;
  }

  50% {
    transform: scaleX(1.05) scaleY(0.95) rotate(-0.5deg);
    opacity: 1;
  }

  75% {
    transform: scaleX(0.95) scaleY(1.02) rotate(1.5deg);
    opacity: 0.85;
  }
}

.flame {
  animation: flicker 1.8s ease-in-out infinite;
  transform-origin: bottom center;
}

.candle-wrap:nth-child(2) .flame {
  animation-duration: 2.1s;
  animation-delay: 0.3s;
}

.candle-wrap:nth-child(3) .flame {
  animation-duration: 1.6s;
  animation-delay: 0.6s;
}

.candle-wrap:nth-child(4) .flame {
  animation-duration: 2.3s;
  animation-delay: 0.9s;
}

.candle-wrap:nth-child(5) .flame {
  animation-duration: 1.9s;
  animation-delay: 1.2s;
}

.candle-wrap:nth-child(6) .flame {
  animation-duration: 2.4s;
  animation-delay: 0.15s;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-40px) translateX(10px) scale(0.5);
    opacity: 0;
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.8), rgba(255, 120, 0, 0.3));
  animation: float-particle 3s ease-out infinite;
  pointer-events: none;
}

.candle-name {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 220, 150, 0.9);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

.candle-date {
  font-size: 11px;
  color: rgb(255 200 100);
  text-align: center;
  letter-spacing: 1px;
  margin-top: 4px;
}

.candle-glow {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 180, 50, 0.25), transparent 70%);
  border-radius: 50%;
  margin: -25px auto 0;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* ===== GLOBAL PRESENCE ===== */
#presence {
  background: white;
  padding: 80px 0;
  overflow: hidden;
}

.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border-radius: 20px;
  border: 1px solid rgba(184, 150, 46, 0.15);
  background: var(--cream);
  transition: all 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.country-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 150, 46, 0.05), rgba(26, 35, 64, 0.03));
  opacity: 0;
  transition: opacity 0.4s;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 35, 64, 0.1);
  border-color: var(--gold);
}

.country-card:hover::before {
  opacity: 1;
}

@keyframes flagFloat {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(2deg) translateY(-4px);
  }
}

.country-flag {
  font-size: 52px;
  margin-bottom: 12px;

  display: block;
  line-height: 1;
}

.country-card:nth-child(2) .country-flag {
  animation-delay: 0.5s;
}

.country-card:nth-child(3) .country-flag {
  animation-delay: 1s;
}

.country-card:nth-child(4) .country-flag {
  animation-delay: 1.5s;
}

.country-card:nth-child(5) .country-flag {
  animation-delay: 0.3s;
}

.country-card:nth-child(6) .country-flag {
  animation-delay: 0.8s;
}

.country-card:nth-child(7) .country-flag {
  animation-delay: 1.3s;
}

.country-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

.country-sub {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== NEWS + GALLERY ===== */
#newsGallery {
  background: var(--cream);
  padding: 80px 0;
}

.news-scroll {
  max-height: 613px;
  overflow-y: auto;
  padding-right: 8px;
}

.news-scroll::-webkit-scrollbar {
  width: 4px;
}

.news-scroll::-webkit-scrollbar-track {
  background: rgba(26, 35, 64, 0.06);
  border-radius: 2px;
}

.news-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.news-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(184, 150, 46, 0.1);
  margin-bottom: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

.news-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(26, 35, 64, 0.08);
  border-color: var(--gold);
}

.news-img {
  width: 175px;
  height: 122px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-body h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.news-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

.news-date {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.news-date-one {
  font-size: 11px;
  color: #004c88;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: capitalize;
  margin-top: -13px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 64, 0.5);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* GALLERY POPUP */
#galleryPopup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

#galleryPopup.open {
  display: flex;
}

.popup-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.popup-arrow:hover {
  background: rgba(184, 150, 46, 0.4);
  border-color: var(--gold);
}

#popupPrev {
  left: 24px;
}

#popupNext {
  right: 24px;
}

#popupClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

#popupClose:hover {
  background: rgba(220, 50, 50, 0.5);
}

/* ===== JOIN US SECTION ===== */
#joinUs {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#joinUs::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 150, 46, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(26, 35, 64, 0.5) 0%, transparent 50%); */
}

.join-card {
  /* background: rgba(255, 255, 255, 0.04); */
  border: 1px solid rgba(184, 150, 46, 0.25);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.join-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

.join-card:hover::before {
  transform: scaleX(1);
}

.join-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(184, 150, 46, 0.15);
  border: 1px solid rgba(184, 150, 46, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--gold);
  transition: all 0.4s;
}

.join-card:hover .join-icon {
  background: rgba(184, 150, 46, 0.25);
  transform: scale(1.1);
}

.join-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
}

.join-card p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  margin-bottom: 24px;
}

.join-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(184, 150, 46, 0.5);
  color: var(--gold-pale);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.join-card-btn:hover {
  background: rgba(184, 150, 46, 0.15);
  gap: 14px;
}

/* ===== FOOTER ===== */
#footer {
  background: #0a0d1a;
  position: relative;
  overflow: hidden;
}

.footer-top {
  /* background: linear-gradient(135deg, var(--navy), #0f1628); */
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(184, 150, 46, 0.15);
}

.footer-brand h2 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo img {
  width: 73px;
  border-radius: 7px;
}

.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: var(--gold-light);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-col a {
  display: block;
  font-size: 17px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 6px;
  font-size: 16px;
}

.footer-contact-item span {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.89);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(250, 250, 250);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {

  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.4);
}

.footer-bottom p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-align: center;
}

/* Gold cross ornament */
.gold-cross {
  display: inline-block;
  font-size: 24px;
  color: rgba(184, 150, 46, 0.4);
  margin: 0 8px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* Mobile nav */
#mobileMenu {
  display: none;
}

#mobileMenu.open {
  display: block;
}

@media (max-width: 768px) {
  .slide-content {
    padding: 28px 24px 32px;
  }

  .nav-desktop {
    display: none !important;
  }

  .slide-title {
    font-size: 26px;
  }

  .slider-dots {
    right: 24px;
    bottom: 36px;
  }

  #topbar {
    display: none;
  }
}

/* Horizontal rule ornament */
.ornament-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 24px;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 150, 46, 0.4), transparent);
}

.ornament-line span {
  color: var(--gold);
  font-size: 16px;
}

/* Nav mobile toggle */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .nav-desktop {
    display: none;
  }
}

:root {
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --navy: #1a2340;
  --cream: #faf7f0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  overflow-x: hidden;
}

/* HEADER */
.page-header {
  background: var(--navy);
  padding: 30px 0 30px;
  position: relative;
  overflow: hidden;
}

.page-header-one {
  background: var(--navy);
  padding: 66px 0 30px !important;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(184,150,46,0.1)'/%3E%3C/svg%3E") repeat;
}

.page-header-one::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.8' fill='rgba(184,150,46,0.1)'/%3E%3C/svg%3E") repeat;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  color: white;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
  margin-top: -15px;
}

.page-header-one h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  color: white;
  font-weight: 600;
  line-height: 1.1;
  position: relative;
}

.page-header h1 span {
  color: var(--gold);
  font-style: italic;
}

.page-header-one h1 span {
  color: var(--gold);
  font-style: italic;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 10px;
}

/* NAV MINI */
.mini-nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184, 150, 46, 0.15);
  padding: 14px 0;
}

.mini-nav .logo {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
}

.mini-nav .logo span {
  color: var(--gold);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(184, 150, 46, 0.25);
  color: var(--navy);
  background: white;
  transition: all 0.3s;
}

.tab.active,
.tab:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.tab.active {
  background: linear-gradient(135deg, var(--navy), #2d3d6e);
}

/* Masonry / Grid */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  padding: 0;
}

@media (max-width:768px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width:480px) {
  .gallery-masonry {
    columns: 1;
  }
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 64, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gal-item:hover .overlay {
  opacity: 1;
}

.overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  backdrop-filter: blur(4px);
}

.overlay-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: white;
  font-style: italic;
}

/* POPUP */
#popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#popup.open {
  display: flex;
}

.popup-main {
  position: relative;
  max-width: 88vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#popupImg {
  max-width: 82vw;
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.popup-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.popup-arrow:hover {
  background: rgba(184, 150, 46, 0.4);
  border-color: var(--gold);
}

#popPrev {
  left: 20px;
}

#popNext {
  right: 20px;
}

#popClose {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

#popClose:hover {
  background: rgba(220, 50, 50, 0.5);
}

.popup-info {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.popup-info span {
  color: var(--gold);
}

.popup-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.popup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s;
  cursor: pointer;
}

.popup-dot.active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.05s
}

.delay-2 {
  transition-delay: 0.1s
}

.delay-3 {
  transition-delay: 0.15s
}

.delay-4 {
  transition-delay: 0.2s
}

.delay-5 {
  transition-delay: 0.25s
}

.delay-6 {
  transition-delay: 0.3s
}

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

p {
  font-family: "Poppins", sans-serif;
  color: #00112a;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px !important;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 23px !important;
  color: #014b87 !important;
  font-weight: 600 !important;
  /* margin-bottom: -22px !important; */
}

.text-slate-500 {
  --tw-text-opacity: 1;
  color: #000 !important;
  font-size: 16px;

}

.news-meta-item {
  margin-top: -22px;
  margin-bottom: 35px;
}

.p-10 {
  padding: 2rem;
}

.mb-8 {
  margin-bottom: 1.5rem;
}

.album-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.album-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #213a8a;
  margin: 0;
  font-weight: 600;
}

.join-btn {
  background: #b8962e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.gallery-title h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #213a8a;
  margin: 0;
  font-weight: 600;
}

.gallery-title p {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 0;
}

.join-btn {
  background: #b8962e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.from-\[\#0A0B1E\] {
  /* --tw-gradient-from: #0A0B1E var(--tw-gradient-from-position); */
  --tw-gradient-to: rgb(10 11 30 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-\[\#0A0B1E\]\/80 {
  /* --tw-gradient-to: rgb(10 11 30 / 0) var(--tw-gradient-to-position); */
  --tw-gradient-stops: var(--tw-gradient-from), rgb(10 11 30 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #0A0B1E 0%,
      rgba(10, 11, 30, 0.8) 50%,
      rgba(10, 11, 30, 0) 100%);
}

.text-\[\#B22A8D\] {
  --tw-text-opacity: 1;
  color: rgb(19 116 196) !important;
}

.gallery h2 {
  font-size: 23px !important;
  color: #014b87 !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}