/* ==========================================================================
   PALACE CONCERTS — CORE DESIGN SYSTEM
   Signature concept: "The Velvet Curtain" — a royal stage curtain parts to
   reveal every hero; gold proscenium framing, deep aubergine velvet, and a
   roaming spotlight beam recur throughout. Event & artist cards are cut like
   torn ticket stubs (perforated edge + stub notch) to tie back to the box
   office, not generic glass cards.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Marcellus&family=Jost:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap");

:root {
  /* ---- Color tokens ---- */
  --black: #0a0a0d;
  --black-2: #131019;
  --black-3: #1b1622;
  --velvet: #2a0f3d;
  --velvet-deep: #170826;
  --gold: #d4af37;
  --gold-light: #f4e5b2;
  --gold-dim: #8a7126;
  --purple: #8b3ffc;
  --purple-soft: #6a2fd0;
  --neon-pink: #ff2ecc;
  --ivory: #f6f1e7;
  --smoke: #a79fb3;
  --smoke-dim: #6f6879;
  --line: rgba(212, 175, 55, 0.18);

  .text-gold{
    color: var(--gold);
  }
  .show-bg-img{
    background-image: url(../images/upcoming-show-bg.jpg) ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* ---- Gradients ---- */
  --grad-gold: linear-gradient(
    120deg,
    #8a7126 0%,
    #d4af37 45%,
    #f4e5b2 55%,
    #d4af37 70%,
    #8a7126 100%
  );
  --grad-royal: linear-gradient(160deg, #170826 0%, #2a0f3d 55%, #170826 100%);
  --grad-spot: radial-gradient(
    circle at 50% 0%,
    rgba(139, 63, 252, 0.3),
    transparent 60%
  );
  --grad-fade-b: linear-gradient(180deg, transparent 0%, var(--black) 100%);
  --grad-fade-t: linear-gradient(0deg, transparent 0%, var(--black) 100%);

  /* ---- Type ---- */
  --f-display: "Cinzel", serif;
  --f-sub: "Marcellus", serif;
  --f-body: "Jost", sans-serif;
  --f-mono: "Space Mono", monospace;

  /* ---- Layout ---- */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;
  --nav-h: 88px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-s: 0.35s;
  --dur-m: 0.7s;
  --dur-l: 1.2s;
}

/* ---------------------------------------------------------------------- */
/* RESET / BASE                                                            */
/* ---------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--gutter);
}

.preloder{
    width: 140px;
    height: 140px;
}

.pre-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 99px;
  animation: preLoad 1.3s ease forwards;
  will-change: width;
}

@keyframes preLoad {
  0% { width: 0; }
  70% { width: 84%; }
  100% { width: 100%; }
}

/* ---------------------------------------------------------------------- */
/* TYPOGRAPHY                                                              */
/* ---------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ivory);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.gold-text {
  background: var(--grad-gold);
  background-size: 220% auto;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  animation: shimmer 7s linear infinite !important;
}

@keyframes shimmer {
  to {
    background-position: 220% center;
  }
}

.section-sub {
  font-family: var(--f-sub);
  font-size: 1.15rem;
  color: var(--smoke);
  max-width: 620px;
  font-style: italic;
}

.lede {
  color: var(--smoke);
  font-size: 1.05rem;
  max-width: 640px;
}

/* ---------------------------------------------------------------------- */
/* BUTTONS                                                                  */
/* ---------------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition:
    transform var(--dur-s) var(--ease),
    box-shadow var(--dur-s) var(--ease),
    border-color var(--dur-s) var(--ease);
  isolation: isolate;
}

.btn-gold {
  background: var(--grad-gold);
  background-size: 220% auto;
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
}

.btn-gold:hover {
  background-position: 100% center;
  box-shadow: 0 8px 30px -6px rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgb(75 58 4 / 58%);
  color: var(--gold-dim);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.7rem 1.4rem;
  font-size: 0.7rem;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.65s var(--ease);
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.btn-gold .ripple {
  background: rgba(10, 10, 13, 0.35);
}

.upcoming-events-btn {
  margin-top: 35px;
}

@keyframes ripple {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* ---------------------------------------------------------------------- */
/* NAVBAR                                                                   */
/* ---------------------------------------------------------------------- */

.main-logo-w{
  width: 92px;
  max-height: 64px;
  height: auto;
  z-index: 9999 !important
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--dur-s) var(--ease),
    border-color var(--dur-s) var(--ease),
    height var(--dur-s) var(--ease);
}

.navbar.is-scrolled {
  background: rgba(10, 10, 13, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: 94px;
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--ivory);
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.brand-mark path,
.brand-mark circle,
.brand-mark line {
  stroke: var(--gold);
}

.brand small {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  z-index: 1050;
}

.nav-links a {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--dur-s) var(--ease);
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 1100;
}

.nav-toggle span {
  height: 1px;
  background: var(--gold);
  width: 100%;
  transition:
    transform var(--dur-s) var(--ease),
    opacity var(--dur-s) var(--ease);
}

.nav-links li.nav-mobile-brand {
  width: 100%;
  text-align: center;
}

.mobile-brand-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-links.open {
  transform: translateX(0);
  z-index: 1050;
}

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    inset: 0;
    height: 76vh;
    width: 100%;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--dur-m) var(--ease);
    padding: 2.5rem 1.5rem;
    text-align: center;
  }

  .hero.hero-inner {
    min-height: 56vh in !important;
}

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

  .nav-links a {
    font-size: 1rem;
    display: block;
  }

  .nav-links li.nav-mobile-brand {
    margin-bottom: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ---------------------------------------------------------------------- */
/* HERO SCAFFOLD (shared bones; each page overrides content/height)        */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero.hero-inner {
  min-height: 64vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 13, 0.55) 0%,
      rgba(10, 10, 13, 0.35) 35%,
      rgba(10, 10, 13, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 13, 0.75) 0%,
      transparent 45%,
      rgba(10, 10, 13, 0.55) 100%
    );
}

.hero-spot {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: var(--grad-spot);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--f-mono);
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hero-event-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(10, 10, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--gold-light);
}

.hero-countdown .time {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero-countdown .time-label {
  font-size: 0.6rem;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-countdown .time-seg {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  min-width: 38px;
  text-align: center;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  margin: 1.1rem 0 1.4rem;
  max-width: 900px;
}

.hero-sub {
  font-family: var(--f-sub);
  font-style: italic;
  color: var(--smoke);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

/* Curtain reveal panels */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  pointer-events: none;
}

.curtain-panel {
  flex: 1;
  background: repeating-linear-gradient(
    90deg,
    var(--velvet) 0px,
    var(--velvet-deep) 40px,
    var(--velvet) 80px
  );
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
  transition: transform 1.1s var(--ease);
}

.curtain-panel.left {
  transform: translateX(0);
  box-shadow: inset -30px 0 60px rgba(0, 0, 0, 0.55);
}

.curtain-panel.right {
  transform: translateX(0);
  box-shadow: inset 30px 0 60px rgba(0, 0, 0, 0.55);
}

.curtain.open .curtain-panel.left {
  transform: translateX(-102%);
}

.curtain.open .curtain-panel.right {
  transform: translateX(102%);
}

.curtain-seam {
  display: none;
}

.scroll-cue {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------------------------------------------------------------------- */
/* SECTION SPACING                                                         */
/* ---------------------------------------------------------------------- */
section {
  position: relative;
}

.section {
  padding: 7.5rem 0;
}

.section-tight {
  padding: 5rem 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  align-items: center;
}

.bg-royal {
  background: var(--grad-royal);
}

.bg-black2 {
  background: var(--black-2);
}

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---------------------------------------------------------------------- */
/* TICKET CARD (signature component)                                       */
/* ---------------------------------------------------------------------- */
.why-choose-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 166, 57, 0.14), transparent 32%),
        radial-gradient(circle at 85% 80%, rgba(112, 76, 145, 0.10), transparent 35%),
        linear-gradient(135deg, #fffdf8 0%, #f8f0df 50%, #fffaf1 100%);
}

.why-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(190, 143, 31, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 15px;
}

.why-card:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 248, 230, 0.95),
        rgba(242, 229, 250, 0.90)
    );
}

.why-choose-section h2 {
    color: #17130d;
}

.why-choose-section h2 span,
.why-card i {
    color: #b88918;
}

.why-choose-section p {
    color: #6f675c;
}

.ticket-card {
  position: relative;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--dur-m) var(--ease),
    border-color var(--dur-s) var(--ease),
    box-shadow var(--dur-m) var(--ease);
}

.ticket-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    0 30px 60px -20px rgba(139, 63, 252, 0.35),
    0 0 0 1px rgba(212, 175, 55, 0.3);
}

.ticket-media {
  position: relative;
  aspect-ratio: 3/3;
  /* overflow: hidden; */
}

.ticket-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s var(--ease),
    filter 1s var(--ease);
}

.ticket-card:hover .ticket-media img {
  transform: scale(1.08);
  filter: saturate(1.15);
}

.ticket-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, transparent 25%, rgba(10, 10, 13, 0.28) 60%, rgba(10, 10, 13, 0.62) 100%); */
  pointer-events: none;
}

.ticket-media .ticket-countdown {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  margin-top: 0;
  background: rgba(10, 10, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.ticket-media .ticket-countdown .time-seg {
  background: rgba(255, 255, 255, 0.08);
}

.ticket-body {
  padding: 1.6rem 1.6rem 1.4rem;
}

.ticket-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(10, 10, 13, 0.75);
  border: 1px solid var(--gold);
  padding: 0.5rem 0.8rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

.ticket-date-badge .d {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--gold-light);
  line-height: 1;
}

.ticket-date-badge .m {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.ticket-body {
  padding: 1.6rem 1.6rem 1.4rem;
}

.ticket-artist {
  font-family: var(--f-sub);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--smoke);
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticket-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ticket-stub {
  position: relative;
  border-top: 1px dashed var(--line);
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--line);
}

.ticket-stub::before {
  left: -1.6rem;
}

.ticket-stub::after {
  right: -1.6rem;
}

.ticket-price {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Countdown timer shown on ticket cards */
.ticket-countdown {
  margin-top: 0.8rem;
  margin-left: 25px ;
  font-family: var(--f-mono);
  font-size: 0.9rem;
  color: var(--gold-light);
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}
.ticket-countdown .time {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
}
.ticket-countdown .time-label {
  font-size: 0.58rem;
  color: var(--smoke);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.ticket-countdown .time-seg {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
  min-width: 42px;
  text-align: center;
  font-weight: 700;
}

/* ---------------------------------------------------------------------- */
/* GLASS PANEL (used sparingly: forms, filters, stat capsule)              */
/* ---------------------------------------------------------------------- */
.glass {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.glass-gold-edge {
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.12);
}

/* ---------------------------------------------------------------------- */
/* ABOUT / SPLIT SECTION                                                   */
/* ---------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
}

.split-frame {
  position: absolute;
  inset: -18px auto auto -18px;
  width: 70%;
  height: 70%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.stat-chip {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--black);
  border: 1px solid var(--gold);
  padding: 1.4rem 1.8rem;
  text-align: center;
}

.stat-chip .num {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--gold-light);
}

.stat-chip .lbl {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--smoke);
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------- */
/* WHY-CHOOSE ICON CARDS                                                   */
/* ---------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  /* background: var(--line); */
  /* border: 1px solid var(--line); */
}

.feature-card {
  background: var(--black);
  padding: 2.8rem 2.2rem;
  transition: background var(--dur-s) var(--ease);
  position: relative;
}



.feature-card:hover {
  background: var(--black-2);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.6rem;
}

.feature-icon path,
.feature-icon circle,
.feature-icon line,
.feature-icon polygon {
  stroke: var(--gold);
}

.feature-card h3 {
  font-family: var(--f-sub);
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.site-popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 13, 0.9);
  backdrop-filter: blur(6px);
  z-index: 9999;
  padding: 1.5rem;
}

.site-popup-overlay.open {
  display: flex;
}

.site-popup {
  width: min(630px, 100%);
  background: rgba(15, 9, 29, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 22px;
  text-align: center;
  position: relative;
}

.site-popup h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.site-popup p {
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.site-popup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.popup-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--ivory);
  font-size: 1.3rem;
  background: rgba(10, 10, 13, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.popup-close:hover {
  background: rgba(212, 175, 55, 0.12);
}

.site-popup-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.site-popup-gallery img {
  width: calc(50% - 0.5rem);
  max-width: 275px;
    height: 350px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-card p {
  color: var(--smoke);
  font-size: 0.92rem;
}

/* ---------------------------------------------------------------------- */
/* ARTIST CARD                                                             */
/* ---------------------------------------------------------------------- */
.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
      border-radius: 20px;

}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.artist-card:hover img {
  transform: scale(1.1);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 13, 0.95) 10%,
    rgba(10, 10, 13, 0.15) 60%,
    transparent 100%
  );
}

.artist-genre {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.artist-name {
  font-family: var(--f-sub);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artist-desc {
  color: var(--smoke);
  font-size: 0.85rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--dur-m) var(--ease),
    opacity var(--dur-m) var(--ease),
    margin var(--dur-m) var(--ease);
}

.artist-card:hover .artist-desc {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 0.8rem;
}

.artist-social {
  display: flex;
  gap: 0.8rem;
}

.artist-social a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--dur-s) var(--ease),
    color var(--dur-s) var(--ease);
}

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

.artist-social svg {
  width: 14px;
  height: 14px;
}

/* ---------------------------------------------------------------------- */
/* MASONRY GALLERY                                                         */
/* ---------------------------------------------------------------------- */
.masonry {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.masonry-item img {
  width: 100%;
  transition: transform 1s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(0deg, rgba(10, 10, 13, 0.92), transparent 65%);
  opacity: 0;
  transition: opacity var(--dur-s) var(--ease);
}

.masonry-item:hover .masonry-caption {
  opacity: 1;
}

.masonry-caption .t {
  font-family: var(--f-sub);
  font-size: 1.05rem;
}

.masonry-caption .y {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

/* ---------------------------------------------------------------------- */
/* TESTIMONIALS                                                            */
/* ---------------------------------------------------------------------- */
.testi-card {
  padding: 2.4rem;
  border: 1px solid var(--line);
  background: var(--black-2);
  position: relative;
}

.testi-quote-mark {
  font-family: var(--f-display);
  font-size: 3.5rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1rem;
}

.testi-text {
  color: var(--smoke);
  font-style: italic;
  font-family: var(--f-sub);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testi-person img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ---------------------------------------------------------------------- */
/* STATS                                                                   */
/* ---------------------------------------------------------------------- */
.stats-band {
  background: var(--grad-royal);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  padding: 1rem 1rem;
  border-left: 1px solid var(--line);
}

.stat-item:first-child {
  border-left: none;
}

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-light);
  display: flex;
  justify-content: center;
  gap: 0.15rem;
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.6rem;
}

/* ---------------------------------------------------------------------- */
/* CTA BAND                                                                 */
/* ---------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-band .hero-media img {
  filter: brightness(0.5) saturate(1.1);
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 1.6rem;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---------------------------------------------------------------------- */
/* FOOTER                                                                   */
/* ---------------------------------------------------------------------- */


.site-footer {
  /* background: var(--black); */
  border-top: 1px solid var(--line);
  padding: 5.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--smoke);
  font-size: 0.92rem;
  margin: 1.2rem 0 1.6rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-s) var(--ease);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-heading {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-links li {
  margin-bottom: 0.85rem;
}
.footer-links, .footer-contact {
 padding-left: 0 !important;
  /* list-style: none; */
}

.footer-links a {
  color: var(--smoke);
  font-size: 0.92rem;
  transition:
    color var(--dur-s) var(--ease),
    padding var(--dur-s) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

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

.footer-links .link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.footer-links .link-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--smoke);
  font-size: 0.92rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.newsletter-form {
  display: flex;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1rem;
  color: var(--ivory);
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: var(--smoke-dim);
}

.newsletter-form button {
  padding: 0 1.2rem;
  color: var(--gold);
  transition: background var(--dur-s) var(--ease);
}

.newsletter-form button:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--smoke-dim);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.6rem;
}

.footer-bottom-links a {
  color: var(--smoke-dim);
  font-size: 0.8rem;
  transition: color var(--dur-s) var(--ease);
}

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

/* ---------------------------------------------------------------------- */
/* CURSOR SPOTLIGHT (desktop only, added via JS)                           */
/* ---------------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 63, 252, 0.13),
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

/* ---------------------------------------------------------------------- */
/* PAGE LOADER                                                             */
/* ---------------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.4rem;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  width: 64px;
  height: 64px;
}

.loader-mark circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: loaderDraw 1.6s var(--ease) infinite;
}

@keyframes loaderDraw {
  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -180;
  }
}

.loader-text {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------- */
/* REVEAL-ON-SCROLL BASE (JS toggles .is-visible)                          */
/* ---------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.reveal-r {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

.stagger > * {
  transition-delay: calc(var(--i, 0) * 0.09s);
}

/* ---------------------------------------------------------------------- */
/* BREADCRUMB / PAGE HERO HELPERS                                          */
/* ---------------------------------------------------------------------- */
.crumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 1.6rem;
}

.crumbs a {
  color: var(--smoke);
}

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

.crumbs span {
  color: var(--gold-dim);
}

/* ---------------------------------------------------------------------- */
/* MISC UTILITIES                                                          */
/* ---------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

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

.muted {
  color: var(--smoke);
}

.tag-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}


/* site background musice css */

.music-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 167, 44, 0.75);
  background: rgba(8, 8, 14, 0.9);
  color: #d4a72c;
  font-size: 22px;
  cursor: pointer;
}

.music-toggle.music-off {
  opacity: 0.6;
}

.music-notice {
  position: fixed;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(8, 8, 14, 0.92);
  color: #d4a72c;
  font-size: 14px;
  letter-spacing: 0.3px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.music-notice.show {
  opacity: 1;
  visibility: visible;
}