/* ==========================================
       COMPLETE style.css CONTENT
       ========================================== */

    /* === CSS VARIABLES === */
    :root {
      --bg-primary: #0D0D0D;
      --bg-card: #1A1508;
      --bg-section: #111111;
      --gold: #C9A84C;
      --gold-light: #E8D5B0;
      --cream: #F5F0E8;
      --text-muted: #9A8F7E;
      --border-gold: rgba(201, 168, 76, 0.25);
      --border-gold-hover: rgba(201, 168, 76, 0.7);
    }

    /* === RESET & BASE === */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
        overflow-x: hidden;        /* ← add this too */

    }

    body {
      background-color: var(--bg-primary);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      /* Body fade-in on load */
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
        overflow-x: hidden;
    }

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

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

    /* === NAVBAR === */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      background: transparent;
      transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(13, 13, 13, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--border-gold);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo img {
      height: 42px;
      filter: brightness(0) invert(1);
    }

    .nav-logo span {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: 0.5px;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 0.9rem;
      color: var(--cream);
      letter-spacing: 0.5px;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

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

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #0D0D0D;
      border-top: 1px solid var(--border-gold);
      flex-direction: column;
      box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      padding: 16px 24px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: var(--cream);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .mobile-nav a.active {
      color: var(--gold);
    }

    /* === BUTTONS === */
    .btn-gold {
      background: var(--gold);
      color: #0D0D0D;
      padding: 14px 36px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      display: inline-block;
      transition: opacity 0.2s ease;
    }

    .btn-gold:hover {
      opacity: 0.88;
    }

    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 1px solid var(--gold);
      padding: 14px 36px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      border-radius: 2px;
      cursor: pointer;
      display: inline-block;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: #0D0D0D;
    }

    /* === SECTION HEADER UTILITY === */
    .section-label {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-subtext {
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 640px;
    }

    .section-center {
      text-align: center;
    }

    .section-center .section-subtext {
      margin: 0 auto;
    }

    /* === CONTAINERS === */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .section-pad {
      padding: 100px 0;
    }

    /* === GOLD DIVIDER === */
    .gold-divider {
      border: none;
      border-top: 1px solid var(--border-gold);
      margin: 0;
    }

    /* === FOOTER === */
    .footer {
      background: #080808;
      padding: 60px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    .footer-col-1 h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .footer-tagline {
      color: var(--text-muted);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      line-height: 1.6;
    }

    .footer-heading {
      font-family: 'Playfair Display', serif;
      color: var(--cream);
      font-size: 1.2rem;
      margin-bottom: 24px;
    }

    .quick-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .quick-links a {
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      color: var(--text-muted);
    }

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

    .find-us p {
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .social-links {
      display: flex;
      gap: 16px;
      margin-top: 24px;
    }

    .social-links a {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      color: var(--cream);
      font-size: 0.9rem;
    }

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

    .footer-divider {
      border: none;
      border-top: 1px solid var(--border-gold);
      margin: 32px 0;
    }

    .footer-bottom {
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* === BACK TO TOP BUTTON (Added for JS logic) === */
    #back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--gold);
      color: #0D0D0D;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: none;
      font-size: 1.2rem;
      z-index: 999;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: opacity 0.3s;
    }

    #back-to-top:hover {
      opacity: 0.88;
    }

    /* === RESPONSIVE UTILITIES === */
    @media (max-width: 768px) {
      .navbar {
        height: 64px;
        padding: 0 20px;
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .container {
        padding: 0 24px;
      }
      .section-pad {
        padding: 64px 0;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .press-grid-3 { grid-template-columns: 1fr !important; }
      .press-grid-2 { grid-template-columns: 1fr !important; }

    }
    .marquee-track {
        display: flex;
        align-items: center;
        gap: 14px;
        width: max-content;
        animation: marquee-scroll 35s linear infinite;
        white-space: nowrap;
    }

    .marquee-track span {
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-size: 1.8rem;
        color: var(--gold);
    }

    .marquee-track .sep {
        color: var(--cream);
        font-style: normal;
    }

    @keyframes marquee-scroll {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }
    /* Mandala mobile fix */
    @media (max-width: 768px) {
    #dancer-silhouette {
        opacity: 0.12;
        height: 80%;
    }
    }
/* === HERO SLIDESHOW === */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

@keyframes zoomOut {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.hero-slide.zoom-in {
  animation: zoomIn 7s ease-in-out forwards;
}

.hero-slide.zoom-out {
  animation: zoomOut 7s ease-in-out forwards;
}

@media (max-width: 768px) {
  .hero-slide {
    background-position: center center;
  }
}
/* === CREDENTIAL PILLS === */
.cred-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--cream);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 5px 14px;
    border-radius: 20px;  /* ← change this */
  letter-spacing: 0.3px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cred-pill:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.6);
}