:root{
  /* User-provided palette */
  --primary-black: #1c1c1c;    /* Smoke gray (slightly lighter than matte black) */
  --hero-min-height: 420px; /* standardized hero min height for desktop */
  --deep-purple: #2E2A36;      /* Deep Purple-Gray */
  --electric-purple: #7A3EFF;  /* Vibrant Electric Purple */
  --white: #FFFFFF;            /* White for contrast */
  --silver: #C0C0C0;          /* Silver for dividers and subtle borders */
  --body-text: #E0E0E0;        /* Soft body text */
  --shadow: 0 18px 48px rgba(0,0,0,.7);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
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;
}
a:hover{opacity:.94}
.container {
  width: min(900px, 92vw);
  margin-inline: auto;
  padding: 0 1.5rem;
}

/* Nav with Hamburger */
.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}
/* Heart of Louisiana Series logo sizing */
.site-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.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}
.nav-toggle svg{width:24px; height:24px; display:block}
nav ul{display:flex; gap:14px; list-style:none; margin:0; padding:0}
nav a{color:var(--body-text); padding:10px 14px; border-radius:4px; font-weight:800}
nav a.active, nav a:hover{background:rgba(122,62,255,0.08)}

@media (max-width: 960px){
  body{overflow-x:hidden}
  .nav-toggle{display:block}
  .brand img{height:48px}
  nav ul{
    display:none;
    position:absolute; top:58px; left:0; right:0;
    padding:14px; margin:0;
    background:linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.55));
    border-bottom:1px solid rgba(255,255,255,.18);
  }
  nav ul.open{display:flex; flex-direction:column; gap:8px}
  nav a{display:block; padding:12px 14px}
}

/* Hero */
/* Artist Series Poster */
.poster-hero img,
img[src*="series_poster_portrait"] {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.hero-grid{display:grid; grid-template-columns:1.15fr 1fr; gap:40px; align-items:center}
/* optional: .hero-grid can inherit page background */

/* Sections */
.section{
  padding:38px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), transparent), var(--bg);
  border:none;
  box-shadow:none;
}

/* 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 — Crimson with vignette */
.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{
  /* Primary CTA now displayed as white box with dark text */
  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)}

/* Black pill to pair with the purple primary pill */
.btn.dark{
  background: #0f0f0f; /* deep black */
  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) }

/* Hover scale only on devices that support hover to avoid jumpy touch interactions */
@media (hover: hover) and (pointer: fine) {
  .btn:hover{ transform: translateY(-2px) scale(1.04); }
}

/* Larger tap targets on small screens */
@media (max-width: 560px){
  .btn{ padding:14px 20px; font-size:1rem }
  .cta-row{ gap:14px }
}

/* Accessible focus state */
.btn:focus-visible{ outline: 3px solid rgba(122,62,255,0.22); outline-offset:4px }

/* Banner */
.banner{padding:50px 0; text-align:center; background:linear-gradient(180deg, rgba(122,62,255,0.06), rgba(0,0,0,0)); border-top:1px solid rgba(192,192,192,0.06); border-bottom:1px solid rgba(192,192,192,0.04)}

/* Hero-specific CTA spacing: keep buttons centered and add breathing room before the gold banner frame */
.hero{padding-bottom:28px}
.hero{min-height:var(--hero-min-height); display:flex; align-items:center}
.hero .cta-row{justify-content:center; gap:16px; margin-bottom:20px}
.hero{background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);}

/* Exciting inline announcement style */
.exciting{ color: var(--electric-purple); font-weight:900; font-size:1.1rem; margin-top:12px; text-transform:none; }

/* Artist headline sizing to keep on one line */
.artist-line{ font-size:1.15rem; font-weight:900; letter-spacing:0.02em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
@media (max-width:420px){ .artist-line{ white-space:normal; font-size:1rem; } }

/* Announcement banner */
.announcement{ padding:18px 0; background:transparent; margin:8px 0 22px 0; }
.announcement-head{ font-size:1.9rem; font-weight:900; color:var(--white); margin:0; letter-spacing:0.02em; }
@media (max-width:420px){ .announcement-head{ font-size:1.65rem } }

/* Hero utilities */
.hero-relative{position:relative; overflow:hidden}
.hero-content{position:relative; z-index:1}
.logo-wrap{display:flex; align-items:center; justify-content:center}

/* 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)}

/* Hero vignette overlay and video adjustments */
.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}
.hero-content{position:relative; z-index:2}

/* Utilities used by the updated homepage */
.hero-cta-left{justify-content:flex-start; margin-top:18px}
.logo-center{display:flex; align-items:center; justify-content:center}
.logo-center img{max-width:260px; width:100%; height:auto; display:block; margin:0 auto; filter:drop-shadow(0 8px 30px rgba(122,62,255,0.12));}
.poster-hero--small{margin-bottom:18px}
.center-text{ text-align:center; margin-inline:auto }

/* Purchase CTA block under poster on homepage */
.purchase-cta{ margin-top:18px }
.purchase-cta h3{ margin-bottom:8px; letter-spacing:0.02em; font-size:1.6rem; font-weight:900; color:var(--white) }
@media (max-width:560px){ .purchase-cta h3{ font-size:1.4rem } }

/* 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}

/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap:18px}
.gallery img{grid-column: span 4; width:100%; border-radius:14px}

/* Newsletter */
.newsletter{padding:60px 0; text-align:center; background:var(--deep-purple); border-top:1px solid rgba(192,192,192,0.04)}

/* Poster hero */
.poster-hero{
  width:min(820px, 92vw);
  aspect-ratio:3/4;
  margin: 0 auto 24px;
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
}
.poster-frame{
  border: 6px solid var(--white); /* white trim */
  border-radius:14px;
  background: linear-gradient(180deg, rgba(46,42,54,0.35), rgba(15,15,15,0.45));
  box-shadow: 0 18px 48px rgba(0,0,0,.6), inset 0 2px 0 rgba(255,255,255,.02);
}
.poster-flyer{
  background-image: url('../img/series_poster_portrait.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain; /* keep poster proportions visible */
  background-color: var(--deep-purple); /* purple fallback */
  width:100%; height:100%; display:block;
}

/* CTA overlay inside poster frame */
.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}
.mt-12{ margin-top:12px }
.poster-hero img{width:100%; height:100%; object-fit:cover}
.cta-center{ justify-content:center }
.hero-pad-top{ padding-top:40px }
.text-center{ text-align:center }
.max-width-cards{ max-width:900px; margin:0 auto; display:grid; grid-template-columns:1fr; gap:32px }
.card--bordered{ background:transparent; border:1px solid rgba(122,62,255,0.06); border-radius:18px; padding:24px }
.img-card{ width:100%; border-radius:12px; margin-bottom:10px; aspect-ratio:16/9; object-fit:cover; border:1px solid rgba(122,62,255,0.06) }
.gallery-max{ display:flex; flex-direction:column; gap:32px; max-width:900px; margin:0 auto }
.card--recap{ padding:18px; border-radius:18px; border:1px solid rgba(122,62,255,0.06); background:transparent; box-sizing:border-box }
.img-recap{ width:100%; height:auto; aspect-ratio:16/9; object-fit:cover; border-radius:12px; display:block; margin:0 auto }
.mt-20{ margin-top:20px }

/* About */
.fade-in{opacity:0; transform:translateY(8px); animation:fadeIn 900ms ease forwards}
@keyframes fadeIn{to{opacity:1; transform:none}}
.about-hero{display:grid; grid-template-columns:1.2fr 1fr; gap:24px; align-items:center}
.about-hero img{width:100%; border-radius:16px; box-shadow: 0 12px 28px rgba(0,0,0,.22)}

/* Footer */
.footer{padding:46px 0; color:#d8eef7; font-size:.98rem}
.footer .cols{display:grid; grid-template-columns:2fr 1fr 1fr; gap:26px}
.footer a{color:#d8eef7}

/* Clean container for embedded videos (removes the old colored card) */
.video-frame {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 0;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  border: 0;
  border-radius: 8px;
}

/* Series poster styling and hover expand */
.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); }

/* Responsive iframe embed: keep 16:9 using aspect-ratio or fallback */
.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 }

/* Artist page header image and bio box */
.artist-media{ display:flex; flex-direction:column; align-items:center; gap:12px; margin-bottom:18px; width:100%; }
.artist-header{ width:100%; max-width:880px; aspect-ratio:16/9; object-fit:cover; border-radius:8px; box-shadow: 0 12px 30px rgba(0,0,0,0.28); display:block }
.artist-bio{ max-width:760px; width:90%; background:rgba(12,22,28,0.6); color:var(--body-text); padding:14px 18px; border-radius:10px; border:1px solid rgba(255,255,255,0.04); font-weight:600; text-align:center }

@media (max-width:960px){
  :root{ --hero-min-height: 320px }
  .hero-grid, .grid-2, .about-hero{grid-template-columns:1fr}
  .cards .card, .gallery img{grid-column: span 12}
  .poster-hero{width:95vw}
}

/* Utility classes to replace inline styles */
.pt-40{ padding-top:40px }
.mt-10{ margin-top:10px }
.mt-18{ margin-top:18px }
.mb-8{ margin-bottom:8px }
.mt-0{ margin-top:0 }
.mt-14{ margin-top:14px }
.mb-12{ margin-bottom:12px }
.mt-48{ margin-top:48px }
.mb-32{ margin-bottom:32px }

/* Alternative card used on hols page */
.card--alt{ max-width:480px; width:100%; padding:18px; border-radius:18px; box-shadow:0 4px 24px rgba(0,0,0,0.08); overflow:hidden; box-sizing:border-box }
.card--alt.bg-muted{ background: rgba(17,74,98,0.96); border: 0.04em solid #176a62 }

/* Poster stacking and poster image styles */
.poster-stack{ width:100%; position:relative; text-align:center; border:none; border-radius:18px; box-shadow:0 4px 24px rgba(0,0,0,0.08); background:rgba(17,74,98,0.96); box-sizing:border-box }
.poster-img{ width:96%; max-width:520px; height:auto; display:inline-block; border-radius:14px; border:0.05em solid #176a62; box-shadow:0 2px 12px rgba(0,0,0,0.10); transition:opacity 2s; background:#fff }
.poster-img.top{ opacity:1; z-index:2 }
.poster-img.back{ opacity:0; z-index:1; position:absolute; left:0; top:0 }

/* Paywall utilities */
.paywall{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.3) }
.paywall-panel{ background:#0e3b4c; border:1px solid rgba(255,255,255,.25); padding:18px; border-radius:12px; text-align:center }

.justify-center{ justify-content:center }
.pos-relative{ position:relative; z-index:1 }
.eyebrow-block{ display:block; font-size:1.15rem; font-weight:700; margin-bottom:8px }
.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 }
.iframe-embed{ width:100%; max-width:880px; aspect-ratio:16/9; height:auto; border-radius:8px; display:block }
.note-small{ display:block; margin-top:8px; color:#d6eaf4 }

/* Small-screen logo tweaks to ensure consistent mobile display */
@media (max-width:420px) {
  /* keep series poster slightly smaller on very small phones */
  .series-poster { max-width: 260px; }

  /* footer logo slightly reduced to avoid crowding */
  .site-logo-footer { height: 40px; }
}

/* Modal Styles */
.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; /* space between buttons */
  align-items: center;
}

/* Optional: Make buttons full width on small screens */
@media (max-width: 500px) {
  .modal-content a.btn {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}
#ticket-modal .modal-content h2 {
  color: var(--primary-black) !important;
}
