/* Luxury, Exclusive, Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
  /* Core Palette: Deepest Black & Charcoal */
  --bg-depth: #050505;
  --bg-surface: #0a0a0a;
  --bg-card: rgba(20, 20, 20, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Accents */
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-mute: #8a7c55;
  /* Merlot: The New Red Accent */
  --merlot-deep: #4a0404;
  --merlot-vivid: #801818;
  --merlot-glow: rgba(128, 24, 24, 0.4);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Text Colors */
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-tertiary: rgba(255, 255, 255, 0.4);

  /* Spacing & Layout */
  --container-width: 1200px;
  --gutter: 2rem;
  --radius-lg: 2px;
  --radius-sm: 1px;

  /* Effects */
  --shadow-glow: 0 0 50px rgba(128, 24, 24, 0.15);
  /* Merlot Glow */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-gold: 1px solid rgba(212, 175, 55, 0.3);
  --border-merlot: 1px solid rgba(128, 24, 24, 0.4);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg-depth);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Utility Classes */
.container {
  width: min(100% - var(--gutter) * 2, var(--container-width));
  margin-inline: auto;
}

.text-gold {
  color: var(--gold-primary);
}

.text-merlot {
  color: var(--merlot-vivid);
}

.font-display {
  font-family: var(--font-display);
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Background Effects */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.bg-aurora {
  position: fixed;
  top: -60%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -2;
  background:
    radial-gradient(circle at 60% 40%, rgba(128, 24, 24, 0.08), transparent 45%),
    /* Merlot Haze */
    radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.03), transparent 40%);
  /* Subtle Gold */
  filter: blur(90px);
  animation: float 25s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-30px, 20px) rotate(2deg);
  }
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* Increased to ensure header is always on top */
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  isolation: isolate;
  /* Create new stacking context */
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  /* Slightly more opaque for better visibility */
  backdrop-filter: blur(12px);
  z-index: 1;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  /* Ensure content is above background */
}

.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  font-weight: 400;
}

.brand span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: 3.5rem;
}

.nav-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--merlot-vivid);
  /* Red Underline */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 140px;
  /* Increased to ensure header clearance */
  padding-bottom: 2rem;
  background-image: url('assets/main-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.5);
  /* Dark overlay for text readability */
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  line-height: 1;
}

.hero-line {
  display: block;
}

.line-1 {
  margin-left: -1rem;
}

.line-2 {
  margin-left: 1rem;
  color: var(--gold-primary);
}

.line-3 {
  margin-left: 0;
}

/* Responsive side: Nav toggle */
/* Removed redundant media query */

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Sparkle Effects */
.sparkles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
  animation: sparkleFloat 3s ease-in-out infinite, sparkleTwinkle 1.5s ease-in-out infinite;
}

/* Individual Sparkle Positioning & Colors */
.sparkle-1 {
  top: 15%;
  left: 20%;
  background: var(--gold-primary);
  box-shadow: 0 0 15px 3px rgba(212, 175, 55, 0.9);
  animation-delay: 0s;
  animation-duration: 4s, 2s;
}

.sparkle-2 {
  top: 25%;
  left: 75%;
  width: 3px;
  height: 3px;
  animation-delay: 0.5s;
}

.sparkle-3 {
  top: 40%;
  left: 15%;
  background: var(--gold-primary);
  box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.8);
  animation-delay: 1s;
  animation-duration: 5s, 2.5s;
}

.sparkle-4 {
  top: 10%;
  left: 85%;
  width: 5px;
  height: 5px;
  animation-delay: 1.5s;
  animation-duration: 3.5s, 1.8s;
}

.sparkle-5 {
  top: 60%;
  left: 30%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.7);
  animation-delay: 2s;
}

.sparkle-6 {
  top: 70%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation-delay: 2.5s;
  animation-duration: 4.5s, 2.2s;
}

.sparkle-7 {
  top: 35%;
  left: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 14px 3px rgba(212, 175, 55, 0.85);
  animation-delay: 0.7s;
  animation-duration: 3.8s, 1.9s;
}

.sparkle-8 {
  top: 20%;
  left: 40%;
  width: 4px;
  height: 4px;
  animation-delay: 1.2s;
}

.sparkle-9 {
  top: 80%;
  left: 25%;
  background: var(--gold-primary);
  box-shadow: 0 0 11px 2px rgba(212, 175, 55, 0.75);
  animation-delay: 1.8s;
  animation-duration: 4.2s, 2.1s;
}

.sparkle-10 {
  top: 50%;
  left: 90%;
  width: 3px;
  height: 3px;
  animation-delay: 0.3s;
  animation-duration: 3.2s, 1.6s;
}

.sparkle-11 {
  top: 30%;
  left: 65%;
  background: var(--gold-primary);
  box-shadow: 0 0 13px 3px rgba(212, 175, 55, 0.8);
  animation-delay: 2.3s;
  animation-duration: 4.8s, 2.4s;
}

.sparkle-12 {
  top: 75%;
  left: 55%;
  width: 5px;
  height: 5px;
  animation-delay: 0.8s;
  animation-duration: 3.6s, 1.7s;
}

/* Additional sparkles along the gold streak (right side) */
.sparkle-13 {
  top: 10%;
  left: 75%;
  background: var(--gold-primary);
  box-shadow: 0 0 12px 3px rgba(212, 175, 55, 0.9);
  animation-delay: 0.4s;
  animation-duration: 3.3s, 1.6s;
}

.sparkle-14 {
  top: 15%;
  left: 82%;
  width: 3px;
  height: 3px;
  animation-delay: 1.1s;
}

.sparkle-15 {
  top: 22%;
  left: 78%;
  background: var(--gold-primary);
  box-shadow: 0 0 14px 3px rgba(212, 175, 55, 0.85);
  animation-delay: 0.6s;
  animation-duration: 4.1s, 2.0s;
}

.sparkle-16 {
  top: 28%;
  left: 85%;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  box-shadow: 0 0 11px 2px rgba(212, 175, 55, 0.8);
  animation-delay: 1.4s;
}

.sparkle-17 {
  top: 35%;
  left: 80%;
  width: 5px;
  height: 5px;
  animation-delay: 0.9s;
  animation-duration: 3.7s, 1.8s;
}

.sparkle-18 {
  top: 42%;
  left: 88%;
  background: var(--gold-primary);
  box-shadow: 0 0 13px 3px rgba(212, 175, 55, 0.9);
  animation-delay: 2.1s;
  animation-duration: 4.3s, 2.1s;
}

.sparkle-19 {
  top: 48%;
  left: 83%;
  width: 3px;
  height: 3px;
  animation-delay: 0.5s;
}

.sparkle-20 {
  top: 55%;
  left: 77%;
  background: var(--gold-primary);
  box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.75);
  animation-delay: 1.6s;
  animation-duration: 4.0s, 1.9s;
}

.sparkle-21 {
  top: 62%;
  left: 85%;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  box-shadow: 0 0 15px 3px rgba(212, 175, 55, 0.95);
  animation-delay: 0.7s;
}

.sparkle-22 {
  top: 68%;
  left: 81%;
  animation-delay: 1.9s;
  animation-duration: 3.4s, 1.7s;
}

.sparkle-23 {
  top: 18%;
  left: 70%;
  background: var(--gold-primary);
  box-shadow: 0 0 11px 2px rgba(212, 175, 55, 0.8);
  width: 3px;
  height: 3px;
  animation-delay: 1.3s;
}

.sparkle-24 {
  top: 32%;
  left: 73%;
  width: 5px;
  height: 5px;
  animation-delay: 0.2s;
  animation-duration: 4.5s, 2.3s;
}

.sparkle-25 {
  top: 45%;
  left: 92%;
  background: var(--gold-primary);
  box-shadow: 0 0 13px 3px rgba(212, 175, 55, 0.85);
  animation-delay: 2.4s;
}

.sparkle-26 {
  top: 58%;
  left: 75%;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.9);
  animation-delay: 1.0s;
  animation-duration: 3.9s, 1.8s;
}

.sparkle-27 {
  top: 72%;
  left: 88%;
  width: 3px;
  height: 3px;
  animation-delay: 0.1s;
}

.sparkle-28 {
  top: 25%;
  left: 95%;
  background: var(--gold-primary);
  box-shadow: 0 0 14px 3px rgba(212, 175, 55, 0.8);
  animation-delay: 1.7s;
  animation-duration: 4.2s, 2.0s;
}

.sparkle-29 {
  top: 50%;
  left: 95%;
  width: 5px;
  height: 5px;
  animation-delay: 2.2s;
}

.sparkle-30 {
  top: 38%;
  left: 68%;
  background: var(--gold-primary);
  box-shadow: 0 0 16px 4px rgba(212, 175, 55, 1.0);
  width: 6px;
  height: 6px;
  animation-delay: 0.3s;
  animation-duration: 4.4s, 2.2s;
}


/* Sparkle Animations */
@keyframes sparkleFloat {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

@keyframes sparkleTwinkle {

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 1px solid var(--merlot-vivid);
  /* Red Border */
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--merlot-vivid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn:hover {
  border-color: var(--merlot-vivid);
  color: white;
  box-shadow: 0 0 30px var(--merlot-glow);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}


/* Featured Section (Card Grid) */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  /* Thin lines */
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card {
  background: var(--bg-depth);
  padding: 5rem 2.5rem;
  text-align: center;
  transition: all 0.6s ease;
  position: relative;
}

.feature-card:hover {
  background: #080808;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Leadership / Group Photo Section */
.leadership-preview {
  position: relative;
  width: 100%;
  height: 80vh;
  /* Large cinematic height */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* Text at bottom */
}

.leadership-bg {
  position: absolute;
  inset: 0;
  background-color: #111;
  /* Fallback */
  background-image: url('assets/executives/group_photo.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.8s ease;
}

.leadership-preview:hover .leadership-bg {
  filter: grayscale(20%) brightness(0.9);
  /* Color reveals on hover */
}

.leadership-overlay {
  position: relative;
  z-index: 2;
  padding: 4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  width: 100%;
}

.leadership-preview h2 {
  font-size: 4rem;
  color: white;
  margin-bottom: 0.5rem;
}

.leadership-preview p {
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Statement Section */
.statement-section {
  background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.8)), url('assets/club/hero.jpg') no-repeat center/cover;
  background-attachment: fixed;
  padding: 10rem 0;
  text-align: center;
}

.statement-text {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
  color: var(--text-primary);
}

.statement-author {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--merlot-vivid);
  /* Red Accent */
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Footer */
.footer {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
}

.footer-nav .nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.copyright {
  color: var(--text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}


/* Responsive */
@media (max-width: 900px) {
  :root {
    --gutter: 1rem;
  }

  body {
    overflow-x: hidden !important;
    position: static !important;
    background-color: var(--bg-depth) !important;
  }

  /* Header Mobile Fixes */
  .header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 70px !important;
    z-index: 100000 !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .header::before {
    display: none !important;
  }

  .header-inner {
    display: contents !important;
    /* Flatten structure for direct flex control */
  }

  .brand {
    display: block !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100001 !important;
  }


  .brand span {
    color: var(--gold-primary) !important;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    /* Force pure white */
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10001 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
  }

  .nav-toggle svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    stroke: #ffffff !important;
    /* Force pure white stroke */
  }

  /* Hero Mobile Optimization */
  .hero {
    min-height: 85vh;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero::before {
    background: rgba(5, 5, 5, 0.6);
    /* Slightly darker overlay for better text readability on mobile */
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
    line-height: 1.15;
    margin-bottom: 1.5rem !important;
  }

  .hero-line {
    margin-left: 0 !important;
    /* Force center alignment on mobile */
  }

  .hero p {
    font-size: 1rem !important;
    line-height: 1.6;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
    padding-left: 1rem !important;
  }

  .uppercase {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  /* Button Mobile */
  .btn {
    padding: 1rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  /* Sections Mobile */
  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .feature-card {
    padding: 3rem 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  /* Leadership Section Mobile */
  .leadership-preview {
    height: 50vh;
    min-height: 400px;
  }

  .leadership-preview h2 {
    font-size: 2rem;
  }

  .leadership-overlay {
    padding: 2rem 1rem;
  }

  /* Statement Section Mobile */
  .statement-section {
    padding: 5rem 0;
  }

  .statement-text {
    font-size: 1.5rem !important;
    line-height: 1.4;
    padding: 0 1rem;
  }

  .statement-author {
    font-size: 0.7rem;
    margin-top: 2rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 4rem 0;
  }

  .footer-nav {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-nav .nav-link {
    font-size: 0.65rem;
  }

  .copyright {
    font-size: 0.7rem;
  }

  /* Navigation Mobile */
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bg-depth);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    /* Higher than header when open */
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}

/* Extra Small Mobile (phones in portrait) */
@media (max-width: 480px) {
  .brand {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2rem !important;
  }

  .hero p {
    font-size: 0.95rem !important;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 2.5rem 1.25rem;
  }

  .leadership-preview h2 {
    font-size: 1.8rem;
  }

  .statement-text {
    font-size: 1.3rem !important;
  }
}

/* Gold Shimmer Animation for Text */
@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.text-shimmer {
  background: linear-gradient(to right, var(--gold-primary) 20%, #fff 40%, #fff 60%, var(--gold-primary) 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: goldShimmer 5s linear infinite;
}