:root{
  /* Palette */
  --primary-black:#1c1c1c;
  --deep-purple:#2E2A36;
  --electric-purple:#7A3EFF;
  --white:#FFFFFF;
  --silver:#C0C0C0;
  --body-text:#E0E0E0;
  --shadow:0 18px 48px rgba(0,0,0,.7);

  /* Layout */
  --hero-min-height:420px;
  --bg:transparent;
}

/* =========================
   BASE
========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:'Roboto','Montserrat',system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--body-text);
  background:var(--primary-black);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  max-width:100%;
  overflow-x:hidden;
}

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

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

a:hover{
  opacity:.94;
}

.container{
  width:min(900px,92vw);
  margin-inline:auto;
  padding-inline:1.5rem;
}

/* =========================
   NAV
========================= */
.nav{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(180deg,rgba(0,0,0,.28),rgba(0,0,0,.12));
  border-bottom:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.02em;
  flex:0 0 auto;
}

.site-logo{
  height:56px;
  width:auto;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.35));
}

.brand-right{
  margin-left:20px;
  flex:0 0 auto;
}

.site-logo-right{
  height:36px;
  width:auto;
  max-width:140px;
}

.site-logo-footer{
  height:48px;
  width:auto;
}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  padding:8px 10px;
  border-radius:10px;
  font-weight:900;
  cursor:pointer;
  flex:0 0 auto;
}

.nav-toggle svg{
  width:24px;
  height:24px;
  display:block;
}

nav{
  margin-left:auto;
  display:flex;
  justify-content:center;
  flex:1 1 auto;
  min-width:0;
}

nav ul,
#nav-links{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}

#nav-links li{
  white-space:nowrap;
}

#nav-links a,
nav a{
  color:var(--body-text);
  padding:10px 14px;
  border-radius:4px;
  font-weight:800;
  white-space:nowrap;
}

nav a.active,
nav a:hover{
  background:rgba(122,62,255,0.08);
}

/* =========================
   TYPOGRAPHY
========================= */
h1,h2,h3{
  font-family:'Montserrat','Oswald',sans-serif;
  color:var(--white);
  margin:0 0 .6rem;
}

body,p,li,a{
  font-family:'Roboto',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--body-text);
}

.sub{
  color:var(--silver);
  font-size:1.5rem;
  line-height:1.5;
}

.center-text{
  text-align:center;
  margin-inline:auto;
}

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

/* =========================
   HERO
========================= */
.hero{
  min-height:var(--hero-min-height);
  display:flex;
  align-items:center;
  padding-bottom:28px;
  background:linear-gradient(180deg,rgba(255,255,255,0.02),transparent);
}

.hero-relative{
  position:relative;
  overflow:hidden;
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:40px;
  align-items:center;
}

.hero .cta-row{
  justify-content:center;
  gap:16px;
  margin-bottom:20px;
}

.hero-cta-left{
  justify-content:flex-start;
  margin-top:18px;
}

.hero-pad-top{
  padding-top:40px;
}

.hero .hero-vignette{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  background:radial-gradient(60% 50% at 50% 35%,rgba(122,62,255,0.06),rgba(0,0,0,0.45));
}

.hero video{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  opacity:0;
  transition:opacity 900ms ease;
  pointer-events:none;
  -webkit-user-select:none;
  user-select:none;
}

.hero video.playing{
  opacity:1;
}

/* Artist headline sizing */
.artist-line{
  font-size:2rem;
  font-weight:900;
  letter-spacing:.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* =========================
   SECTIONS
========================= */
.section{
  padding:38px 0;
  background:linear-gradient(180deg,rgba(0,0,0,0.05),transparent),var(--bg);
  border:none;
  box-shadow:none;
}

/* Announcement banner */
.announcement{
  padding:18px 0;
  background:transparent;
  margin:8px 0 22px 0;
}

.announcement-head{
  font-size:1.7rem;
  font-weight:900;
  color:var(--white);
  margin:0;
  letter-spacing:.02em;
}

/* =========================
   CARDS
========================= */
.cards{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:22px;
  margin-top:24px;
}

.card{
  grid-column:span 4;
  background:transparent;
  border:1px solid rgba(192,192,192,0.06);
  padding:22px;
  border-radius:12px;
}

.card h3{
  margin:.2rem 0 .4rem;
  color:var(--white);
}

.card .meta{
  color:var(--silver);
  font-size:.95rem;
}

.card:hover{
  box-shadow:0 12px 30px rgba(122,62,255,0.08);
  transform:translateY(-6px);
  transition:transform .22s ease, box-shadow .22s ease;
}

/* =========================
   BUTTONS
========================= */
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.btn{
  padding:12px 18px;
  border-radius:8px;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform 180ms ease, box-shadow 180ms ease, opacity 120ms ease;
  will-change:transform, box-shadow;
}

.btn.gold{
  color:var(--primary-black);
  background:var(--white);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 26px rgba(0,0,0,0.12);
}

.btn.gold:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,0.16);
}

.btn.accent{
  background:var(--deep-purple);
  color:var(--white);
  border:1px solid rgba(192,192,192,0.06);
}

.btn.ghost{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(192,192,192,0.06);
}

.btn.dark{
  background:#0f0f0f;
  color:var(--white);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 8px 22px rgba(0,0,0,0.6);
}

.btn.dark:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 36px rgba(0,0,0,0.6);
}

@media (hover:hover) and (pointer:fine){
  .btn:hover{
    transform:translateY(-2px) scale(1.04);
  }
}

.btn:focus-visible{
  outline:3px solid rgba(122,62,255,0.22);
  outline-offset:4px;
}

/* =========================
   FORMS
========================= */
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.form{
  background:transparent;
  border:1px solid rgba(192,192,192,0.06);
  padding:22px;
  border-radius:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.form label{
  display:block;
  font-weight:900;
  margin:8px 0 6px;
}

.form input,
.form textarea,
.form select{
  width:100%;
  padding:12px 14px;
  border-radius:4px;
  border:1px solid #ccc;
  background:#fff;
  color:#222;
}

.form .btn{
  width:100%;
  margin-top:10px;
}

.newsletter{
  padding:60px 0;
  text-align:center;
  background:var(--deep-purple);
  border-top:1px solid rgba(192,192,192,0.04);
}

/* =========================
   GALLERIES
========================= */
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:18px;
}

.gallery img{
  grid-column:span 4;
  width:100%;
  border-radius:14px;
}

.event-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:20px;
  justify-items:center;
}

.event-gallery img{
  width:100%;
  max-width:520px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
  transition:transform .25s ease, box-shadow .25s ease;
}

.event-gallery img:hover{
  transform:scale(1.02);
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}

/* =========================
   POSTER
========================= */
.poster-hero{
  width:min(820px,92vw);
  aspect-ratio:3/4;
  margin:0 auto 24px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  position:relative;
}

.poster-frame{
  border:2px solid var(--white);
  border-radius:14px;
  background:transparent;
  box-shadow:0 18px 48px rgba(0,0,0,.6);
}

.poster-flyer{
  background-image:url('../img/Event2.png');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  background-color:transparent;
  width:100%;
  height:100%;
  display:block;
}

.poster-frame .poster-cta{
  position:absolute;
  left:16px;
  top:16px;
  z-index:5;
  display:flex;
  gap:12px;
}

.poster-frame .poster-cta .btn{
  padding:10px 14px;
  border-radius:8px;
}

.poster-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.poster-hero--small{
  margin-bottom:18px;
}

.poster-hero img,
img[src*="series_poster_portrait"]{
  max-width:320px;
  width:100%;
  display:block;
  margin:0 auto;
  border-radius:8px;
  height:auto;
}

.series-poster{
  max-width:320px;
  width:100%;
  height:auto;
  display:block;
  margin:0 auto;
  border-radius:8px;
  transition:transform 260ms ease, box-shadow 260ms ease;
}

.series-poster:hover{
  transform:scale(1.03);
  box-shadow:0 12px 34px rgba(0,0,0,0.35);
}

.purchase-cta{
  margin-top:18px;
}

.purchase-cta h3{
  margin-bottom:8px;
  letter-spacing:.02em;
  font-size:1.6rem;
  font-weight:900;
  color:var(--white);
}

/* =========================
   ABOUT PAGE
========================= */
.fade-in{
  opacity:0;
  transform:translateY(8px);
  animation:fadeIn 900ms ease forwards;
}

@keyframes fadeIn{
  to{
    opacity:1;
    transform:none;
  }
}

.hols-intro{
  padding:80px 0 0;
  background:#1f1f1f;
  text-align:center;
  margin-bottom:48px;
}

.hols-intro .section-title{
  font-family:'Montserrat',sans-serif;
  font-weight:900;
  font-size:2rem;
  margin-bottom:20px;
}

.hols-intro .video-wrapper{
  max-width:720px;
  margin:0 auto;
}

.hols-intro .video-wrapper video{
  width:100%;
  max-height:405px;
  border-radius:12px;
}

.about-hero{
  display:block;
  text-align:center;
}

.about-hero .sub{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

.about-hero img,
.about-photo{
  width:100%;
  max-width:420px;
  border-radius:16px;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  display:block;
  margin:28px auto 0;
  height:auto;
}

/* =========================
   ARTIST PAGE
========================= */
.artist-media{
  display:block;
  max-width:880px;
  margin:0 auto 40px;
}

.artist-header{
  width:100%;
  max-width:880px;
  border-radius:8px;
  box-shadow:0 12px 30px rgba(0,0,0,0.28);
  object-fit:contain;
  margin:0 auto;
  height:auto;
}

.artist-bio{
  max-width:880px;
  width:100%;
  margin:32px auto 40px;
  background:rgba(12,22,28,0.6);
  color:var(--body-text);
  padding:28px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.04);
  font-weight:600;
  text-align:center;
}

.artist-bio p{
  margin:0;
}

.artist-bio p + p{
  margin-top:16px;
}

.artist-video-wrapper{
  position:relative;
  width:100%;
  max-width:880px;
  margin:0 auto 20px;
  overflow:hidden;
  border-radius:12px;
}

.artist-video-wrapper::before{
  content:"";
  display:block;
  padding-bottom:58%;
}

.artist-video-wrapper video{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   EVENT CAROUSEL
========================= */
.event-carousel{
  max-width:980px;
  margin:0 auto;
}

.carousel-track{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:8px 54px;
  -webkit-overflow-scrolling:touch;
  align-items:center;
}

.carousel-track::-webkit-scrollbar{
  height:8px;
}

.carousel-track img{
  flex:0 0 auto;
  max-height:360px;
  max-width:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:12px;
  scroll-snap-align:center;
  margin:0 auto;
}

.carousel-controls{
  display:flex;
  justify-content:center;
  gap:24px;
  margin-top:16px;
}

.carousel-btn{
  position:static;
  width:40px;
  height:40px;
  border-radius:999px;
  font-size:26px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(0,0,0,0.35);
  color:var(--white);
}

.carousel-btn:hover{
  opacity:.92;
}

/* =========================
   VIDEO EMBEDS
========================= */
.video-frame{
  background:transparent;
  border:none;
  border-radius:12px;
  padding:0;
}

.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  border-radius:8px;
}

.video-embed{
  width:100%;
  max-width:880px;
  margin:0 auto;
  position:relative;
}

.video-embed iframe{
  aspect-ratio:16/9;
  width:100%;
  height:100%;
  display:block;
}

.iframe-embed{
  width:100%;
  max-width:880px;
  aspect-ratio:16/9;
  height:auto;
  border-radius:8px;
  display:block;
}

/* =========================
   FOOTER
========================= */
.footer{
  padding:46px 0;
  color:#d8eef7;
  font-size:.98rem;
}

.footer .cols{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:26px;
  align-items:start;
}

.footer .cols > *{
  min-width:0;
}

.footer a{
  color:#d8eef7;
  word-break:break-word;
}

/* =========================
   MODAL
========================= */
.modal{
  position:fixed;
  z-index:1000;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 350ms ease;
}

.modal.show{
  opacity:1;
  pointer-events:auto;
}

.modal-content{
  background:#fff;
  padding:2em;
  border-radius:8px;
  text-align:center;
  min-width:300px;
  position:relative;
  transform:translateY(-30px);
  transition:transform 350ms cubic-bezier(.4,0,.2,1);
  display:flex;
  flex-direction:column;
  gap:1em;
  align-items:center;
}

#ticket-modal .modal-content h2{
  color:var(--primary-black) !important;
}

/* =========================
   UTILITIES
========================= */
.mt-0{margin-top:0}
.mt-10{margin-top:10px}
.mt-12{margin-top:12px}
.mt-14{margin-top:14px}
.mt-18{margin-top:18px}
.mt-20{margin-top:20px}
.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}
.mb-12{margin-bottom:12px}
.mb-32{margin-bottom:32px}
.pt-40{padding-top:40px}

.justify-center{justify-content:center}
.pos-relative{position:relative;z-index:1}
.logo-small{max-width:260px;width:100%;height:auto;display:block;margin:0 auto}
.flex-center-col{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.flex-center{display:flex;justify-content:center;gap:32px;flex-wrap:wrap}
.note-small{display:block;margin-top:8px;color:#d6eaf4}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:960px){
  :root{
    --hero-min-height:320px;
  }

  .nav-toggle{
    display:block;
  }

  .site-logo{
    height:48px;
  }

  .site-logo-right{
    height:32px;
    max-width:110px;
  }

  nav{
    flex:0 0 auto;
    margin-left:auto;
  }

  nav ul,
  #nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    background:#000;
    padding:8px 0 16px;
    margin:0;
    z-index:9999;
    border-bottom:1px solid rgba(255,255,255,.18);
    flex-direction:column;
    gap:0;
  }

  nav ul.open,
  #nav-links.open{
    display:flex;
  }

  #nav-links li{
    width:100%;
    margin:0;
    padding:0;
    background:transparent;
    border-bottom:1px solid #222;
    white-space:normal;
  }

  #nav-links li:last-child{
    border-bottom:none;
  }

  #nav-links li a,
  nav a{
    display:block;
    width:100%;
    padding:12px 20px;
    white-space:normal;
  }

  .hero-grid,
  .grid-2{
    grid-template-columns:1fr;
  }

  .cards .card,
  .gallery img{
    grid-column:span 12;
  }

  .poster-hero{
    width:95vw;
  }
}

@media (max-width:768px){
  .footer{
    padding:36px 0;
  }

  .footer .cols{
    grid-template-columns:1fr;
    gap:22px;
  }

  .site-logo-footer{
    height:40px;
  }

  .sub{
    font-size:1.2rem;
  }
}

@media (max-width:560px){
  .btn{
    padding:14px 20px;
    font-size:1rem;
  }

  .cta-row{
    gap:14px;
  }

  .purchase-cta h3{
    font-size:1.4rem;
  }

  .container{
    padding-inline:1rem;
  }
}

@media (max-width:500px){
  .modal-content a.btn{
    width:100%;
    max-width:320px;
    box-sizing:border-box;
  }
}

@media (max-width:420px){
  .artist-line{
    white-space:normal;
    font-size:1rem;
  }

  .announcement-head{
    font-size:1.65rem;
  }

  .series-poster{
    max-width:260px;
  }
}
/* =========================
   DESKTOP NAV + INNER PAGE FIX
========================= */

/* Add breathing room between left logo and first nav item */
.brand{
  margin-right: 28px;
}

/* Keep nav centered on desktop */
nav{
  margin-left: 0;
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

/* Slightly tighten nav spacing so it fits cleaner */
nav ul,
#nav-links{
  gap: 22px;
}

/* Keep top page content centered on inner pages */
.hero-content{
  text-align: center;
}

.hero-content .sub{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional, helps if headings are still hugging the left */
.hero-grid{
  justify-items: center;
}
/* =========================
   INNER PAGE HERO TRUE CENTER
========================= */

/* Add one of these body classes in HTML:
   artist-page, about-page, livestream-page, series-page
*/

.artist-page .hero-grid,
.about-page .hero-grid,
.livestream-page .hero-grid,
.series-page .hero-grid{
  grid-template-columns:1fr;
  justify-items:center;
}

.artist-page .hero-content,
.about-page .hero-content,
.livestream-page .hero-content,
.series-page .hero-content{
  text-align:center;
  max-width:820px;
  width:100%;
  margin:0 auto;
}

.artist-page .hero-content .sub,
.about-page .hero-content .sub,
.livestream-page .hero-content .sub,
.series-page .hero-content .sub{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.artist-page .hero-grid,
.about-page .hero-grid,
.livestream-page .hero-grid,
.series-page .hero-grid,
.partners-page .hero-grid{
  grid-template-columns:1fr;
  justify-items:center;
}

.artist-page .hero-content,
.about-page .hero-content,
.livestream-page .hero-content,
.series-page .hero-content,
.partners-page .hero-content{
  text-align:center;
  max-width:820px;
  width:100%;
  margin:0 auto;
}

.artist-page .hero-content .sub,
.about-page .hero-content .sub,
.livestream-page .hero-content .sub,
.series-page .hero-content .sub,
.partners-page .hero-content .sub{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.flyer-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  padding: 8px 16px;
}

.nav-menu a.active,
.nav-menu a.current {
  background: #2d2545;
  border-radius: 6px;
}