/* ═══════════════════════════════════════════════════
   ARTIST PROFILE — STYLESHEET
   01. Variables & Reset
   02. Top Navigation (glass, hero-transparent)
   03. Hero Carousel
   04. Artist Header
   05. Guest Chips
   06. Social Links
   07. About / Gallery
   08. Feedback Widget
   09. Utilities & Animations
   10. Gallery Lightbox
═══════════════════════════════════════════════════ */

/* ── 01. Variables & Reset ──────────────────────── */
:root {
  --brand-start: #ff2a8c;
  --brand-end:   #ff6348;
  --brand-grad:  linear-gradient(225deg, var(--brand-start), var(--brand-end));
  --app-shell-max: 480px;
  --app-fixed-max: 480px;

  /* dark */
  --bg:       #0c0c0c;
  --bg2:      #141414;
  --bg3:      #1c1c1c;
  --bg4:      #242424;
  --t1:       #ffffff;
  --t2:       #aaaaaa;
  --t3:       #585858;
  --border:   #2a2a2a;

  /* glass tokens */
  --glass-bg:  rgba(255,255,255,0.05);
  --glass-bd:  rgba(255,255,255,0.09);
  --glass-sh:  0 8px 32px rgba(0,0,0,0.4);

  --nav-scrolled-bg:  rgba(10,10,10,0.72);
  --bar-bg:           rgba(10,10,10,0.82);
  --sheet-bg:         rgba(16,16,16,0.95);
  --hero-fade:        linear-gradient(to top, #0c0c0c 0%, transparent 55%);
}

[data-theme="light"] {
  --bg:       #f2f2f7;
  --bg2:      #ffffff;
  --bg3:      #ffffff;
  --bg4:      #ebebf0;
  --t1:       #111111;
  --t2:       #555555;
  --t3:       #999999;
  --border:   #e0e0e6;

  --glass-bg:  rgba(255,255,255,0.72);
  --glass-bd:  rgba(255,255,255,0.95);
  --glass-sh:  0 4px 24px rgba(0,0,0,0.08);

  --nav-scrolled-bg:  rgba(242,242,247,0.82);
  --bar-bg:           rgba(242,242,247,0.9);
  --sheet-bg:         rgba(252,252,252,0.97);
  --hero-fade:        linear-gradient(to top, #f2f2f7 0%, transparent 55%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  background: var(--bg);
  color: var(--t1);
  max-width: var(--app-shell-max);
  margin: 0 auto;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}

a      { text-decoration: none; color: inherit; }
button { font-family: 'Quicksand', sans-serif; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea { font-family: 'Quicksand', sans-serif; }

/* ── 02. Top Navigation ─────────────────────────── */
.nav {
  position: fixed; top: 0; left: 50%; translate: -50% 0;
  width: 100%; max-width: var(--app-fixed-max); z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom-color: var(--glass-bd);
}

.nav-row { display: flex; gap: 8px; }

.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}

.nav.scrolled .icon-btn {
  background: var(--bg4);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-color: var(--border);
  color: var(--t1);
}

.icon-btn:hover  { background: rgba(255,255,255,0.28); }
.nav.scrolled .icon-btn:hover { background: var(--bg3); }
.icon-btn.active { color: var(--brand-start) !important; background: rgba(255,42,140,.14) !important; border-color: rgba(255,42,140,.3) !important; }

/* ── 03. Hero Carousel ──────────────────────────── */
.hero-wrap {
  /* Fallback for older browsers */
  height: 65vh;
  /* svh = "small viewport height" — excludes browser chrome (address bar).
     min() ensures the hero leaves room for the artist name + tags
     on short-viewport phones. */
  height: min(62svh, calc(100svh - 260px));
  min-height: 240px;
  position: relative; overflow: hidden; margin-top: 0;
}

.swiper-hero,
.swiper-hero .swiper-wrapper,
.swiper-hero .swiper-slide { width: 100%; height: 100%; }

.swiper-hero .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}

.hero-wrap::after {
  content: ''; pointer-events: none;
  position: absolute; inset: 0; top: 20%;
  background: var(--hero-fade); z-index: 3;
}

.gallery-pill {
  position: absolute; bottom: 18px; right: 14px; z-index: 10;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 13px; font-weight: 600;
  transition: background .2s;
}

.swiper-pagination { bottom: 14px !important; z-index: 10; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.4) !important; opacity:1 !important; transition: width .3s; }
.swiper-pagination-bullet-active { background: #fff !important; width: 22px !important; border-radius: 3px !important; }

/* ── 04. Artist Header ──────────────────────────── */
.artist-header { padding: 20px 16px 16px; }

.tour-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: 11px;
  font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  background: var(--brand-grad); color: #fff; margin-bottom: 10px;
}

.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; line-height: 1.18; margin-bottom: 10px;
}

.tag-row  { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.genre-tag {
  padding: 5px 13px; border-radius: 100px;
  background: var(--glass-bg); color: var(--t2);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 12px; font-weight: 600;
}

.stat-row {
  display: flex; background: var(--glass-bg);
  border: 1px solid var(--glass-bd); border-radius: 16px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.stat-cell {
  flex: 1; padding: 12px 8px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-val {
  font-size: 16px; font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 10px; color: var(--t3); margin-top: 2px; text-transform: uppercase; letter-spacing: .5px; }

/* ── 05. Guest Chips ────────────────────────────── */
.chips-label {
  padding: 4px 16px 8px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px; color: var(--t3);
}
.chips-scroll {
  display: flex; gap: 9px; padding: 0 16px 20px;
  overflow-x: auto; scrollbar-width: none;
}
.chips-scroll::-webkit-scrollbar { display: none; }
.artist-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 100px; padding: 6px 14px 6px 6px;
  white-space: nowrap; transition: border-color .2s;
}
.artist-chip:hover { border-color: var(--brand-start); }
.chip-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.chip-name   { font-size: 13px; font-weight: 600; }

/* ── 06. Social Links ───────────────────────────── */
.section { padding: 20px 16px; }
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sec-title  { font-size: 18px; font-weight: 700; }
.sec-action { font-size: 13px; font-weight: 700; color: var(--brand-start); }
.divider    { height: 8px; background: var(--bg2); }

.social-grid { display: flex; flex-direction: column; gap: 9px; }
.social-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.social-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 13px; border-radius: 16px;
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--t1); transition: border-color .2s, background .2s;
}
.social-btn:hover   { border-color: var(--brand-start); background: var(--bg3); }
.social-btn.full    { grid-column: 1 / -1; }
.social-btn.feature { border-color: rgba(255,42,140,.35); background: linear-gradient(135deg,rgba(255,42,140,.07),rgba(255,99,72,.07)); }

.social-icon-box {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg4);
  overflow: hidden;
}
.social-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.social-text         { flex: 1; min-width: 0; }
.social-text span    { display: block; font-size: 13px; font-weight: 700; }
.social-text small   { font-size: 11px; color: var(--t3); font-weight: 500; }
.social-arr          { font-size: 13px; color: var(--t3); flex-shrink: 0; }
.social-btn.feature .social-arr { color: var(--brand-start); }

/* ── 07. About / Gallery ────────────────────────── */
.about-body { font-size: 14px; line-height: 1.75; color: var(--t2); font-weight: 500; }
.about-body.clamped {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.about-body p + p { margin-top: 10px; }
.read-btn {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--brand-start);
}

.gallery-grid:not(.row) { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.gallery-grid.row { row-gap: 8px; }
.gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; background: var(--bg3); }
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  pointer-events: none;
}
.gallery-play::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(8px);
}
.gallery-play i {
  position: relative;
  z-index: 1;
  margin-left: 3px;
}
.gallery-more {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.58); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; font-weight: 800;
}

/* ── 08. Events ─────────────────────────────────── */
.events-divider { display: flex; align-items: center; gap: 11px; margin: 14px 0; }
.ev-line  { flex: 1; height: 1px; background: var(--border); }
.ev-label { font-size: 10px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--t3); }

.event-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px; border-radius: 16px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  margin-bottom: 10px; transition: border-color .2s, transform .2s;
}
.event-card:hover { border-color: rgba(255,42,140,.5); transform: translateY(-1px); }
.event-card:last-child { margin-bottom: 0; }

.event-thumb { width: 72px; height: 72px; border-radius: 11px; object-fit: cover; flex-shrink: 0; }
.event-info  { flex: 1; min-width: 0; }
.event-date  { font-size: 12px; font-weight: 700; color: var(--brand-end); margin-bottom: 3px; }
.event-name  { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.event-venue { font-size: 12px; color: var(--t3); font-weight: 500; margin-bottom: 3px; }
.event-price { font-size: 12px; font-weight: 700; color: var(--t2); }

.bm-btn {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg4); color: var(--t3);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all .2s;
}
.bm-btn.saved { color: var(--brand-start); background: rgba(255,42,140,.1); }

/* ── 09. Ratings & Reviews ──────────────────────── */
.ratings-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 18px;
}
.rating-chip {
  display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 12px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.logo-circle {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800;
}
.rating-score  { font-size: 13px; font-weight: 700; }
.rating-source { font-size: 11px; color: var(--t3); font-weight: 500; }

/* reviews — contained horizontal scroll (no bleed to avoid flex break) */
.reviews-row {
  display: flex; gap: 11px;
  overflow-x: auto; overflow-y: visible;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.reviews-row::-webkit-scrollbar { display: none; }

.review-card {
  min-width: 228px; max-width: 228px; flex-shrink: 0;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px; padding: 14px;
  word-break: break-word; overflow: hidden;
}
.review-header  { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.review-name    { font-size: 13px; font-weight: 700; }
.review-sub     { font-size: 11px; color: var(--t3); font-weight: 500; }
.score-badge {
  margin-left: auto; padding: 3px 8px; border-radius: 8px;
  background: var(--brand-grad); color: #fff;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; gap: 3px;
}
.review-body {
  font-size: 12px; line-height: 1.65; color: var(--t2); font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px;
}
.review-more {
  font-size: 12px; font-weight: 700; color: var(--brand-start);
  display: inline-flex; align-items: center; gap: 3px;
}

/* ── 10. Feedback Widget (inline section) ───────── */
.rating-widget { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }

.star-btn { font-size: 34px; color: var(--border); line-height: 1; transition: transform .15s, color .15s; }
.star-btn.hovered, .star-btn.filled { color: #fbbf24; }
.star-btn:active { transform: scale(1.3); }

.rating-label  {
  text-align: center; font-size: 14px; font-weight: 700; min-height: 20px;
  color: var(--brand-start); margin-bottom: 14px;
}
.feedback-textarea {
  width: 100%; padding: 13px 14px; border-radius: 14px;
  background: var(--bg4); border: 1.5px solid var(--border);
  color: var(--t1); font-size: 16px; /* 16px prevents iOS zoom */ resize: none; outline: none;
  transition: border-color .2s; margin-bottom: 12px; font-weight: 500;
}
.feedback-textarea:focus { border-color: var(--brand-start); }
.feedback-textarea::placeholder { color: var(--t3); }

.submit-feedback-btn {
  width: 100%; padding: 14px; border-radius: 14px;
  background: var(--brand-grad); color: #fff; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(255,42,140,.28);
}
.feedback-thanks { text-align: center; padding: 20px 0; display: none; }
.feedback-thanks .thanks-icon { font-size: 44px; color: var(--brand-start); margin-bottom: 8px; }
.feedback-thanks p { font-size: 14px; color: var(--t2); font-weight: 600; line-height: 1.6; }

/* ── 09. Utilities ──────────────────────────────── */
.hidden { display: none !important; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .3s ease forwards; }

/* ── 16. Gallery Lightbox ───────────────────────── */
.gallery-modal {
  position: fixed; inset: 0; z-index: 600;
  background: #000;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.gallery-modal.open { opacity: 1; pointer-events: all; }

/* top bar */
.gm-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; flex-shrink: 0; position: relative; z-index: 2;
}
.gm-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; transition: background .2s; flex-shrink: 0;
}
.gm-close:hover { background: rgba(255,255,255,0.26); }
.gm-counter {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.75); letter-spacing: .4px;
}
.gm-bar-spacer { width: 36px; flex-shrink: 0; }

.gm-stage {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 60px; overflow: hidden;
}
.gm-media {
  display: block;
  max-width: 100%; max-height: 100%;
  border-radius: 10px;
  background: #000;
}
.gm-img {
  width: auto; height: auto; object-fit: contain;
  user-select: none; -webkit-user-drag: none;
}
.gm-video,
.gm-iframe {
  width: min(100%, 920px);
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
}
.gm-iframe.is-short {
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
}

/* prev / next arrows */
.gm-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, opacity .2s; z-index: 5;
}
.gm-arrow:hover { background: rgba(255,255,255,0.24); }
.gm-arrow[disabled] { opacity: .2; pointer-events: none; }
.gm-arrow-prev { left: 10px; }
.gm-arrow-next { right: 10px; }

/* caption */
.gm-caption {
  text-align: center; padding: 8px 20px 4px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55);
  flex-shrink: 0; min-height: 32px; margin: 0;
}

/* thumbnail strip */
.gm-thumbs-wrap { padding: 6px 16px 24px; flex-shrink: 0; }
.gm-thumbs {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
}
.gm-thumbs::-webkit-scrollbar { display: none; }
.gm-thumb {
  position: relative;
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 9px;
  overflow: hidden; cursor: pointer; opacity: .45;
  border: 2.5px solid transparent;
  transition: opacity .2s, border-color .2s;
  background: #111;
}
.gm-thumb.active { opacity: 1; border-color: var(--brand-start); }
.gm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gm-thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.18);
}

/* ── 17. Enquiry / Booking ───────────────────────── */
.enquiry-intro {
  font-size: 14px; font-weight: 500; color: var(--t2);
  line-height: 1.7; margin-bottom: 16px;
}

.opp-chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.opp-chip {
  padding: 7px 15px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: var(--glass-bg); border: 1.5px solid var(--glass-bd);
  color: var(--t2); transition: all .2s; cursor: pointer;
}
.opp-chip.active {
  background: var(--brand-grad); border-color: transparent; color: #fff;
  box-shadow: 0 3px 14px rgba(255,42,140,.28);
}

.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-input.select-input {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-input option { background: var(--bg2); color: var(--t1); }

.enquiry-submit {
  width: 100%; padding: 14px; border-radius: 14px;
  background: var(--brand-grad); color: #fff; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 22px rgba(255,42,140,.3); margin-top: 4px;
  transition: opacity .2s;
}
.enquiry-submit:active { opacity: .88; }

.enquiry-success {
  display: none; text-align: center; padding: 24px 0;
}
.enquiry-success .enq-icon { font-size: 48px; color: var(--brand-start); margin-bottom: 10px; }
.enquiry-success h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.enquiry-success p  { font-size: 14px; color: var(--t2); font-weight: 500; line-height: 1.6; }

/* ── 18. Band Page ──────────────────────────────── */
/* member scroll */
.member-scroll {
  display: flex; gap: 12px; padding: 0 16px 20px;
  overflow-x: auto; scrollbar-width: none;
}
.member-scroll::-webkit-scrollbar { display: none; }

.member-card {
  flex-shrink: 0; width: 130px; border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: transform .2s, border-color .2s;
}
.member-card:hover { transform: translateY(-2px); border-color: var(--brand-start); }

.member-card img {
  width: 100%; height: 160px; object-fit: cover; object-position: top; display: block;
}
.member-card-info {
  padding: 10px 11px 12px;
}
.member-card-name { font-size: 14px; font-weight: 700; }
.member-card-role { font-size: 11px; color: var(--brand-end); font-weight: 600; margin-top: 2px; }

/* lineup modal */
.lineup-modal {
  position: fixed; bottom: 0; left: 50%; translate: -50% 0;
  width: 100%; max-width: var(--app-fixed-max); z-index: 450;
  background: var(--sheet-bg);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: 24px 24px 0 0; border: 1px solid var(--glass-bd); border-bottom: none;
  transform: translateY(105%);
  transition: transform .42s cubic-bezier(.32,.72,0,1);
  max-height: 85%;
  display: flex; flex-direction: column;
}
.lineup-modal.open { transform: translateY(0); }

.lineup-modal-handle {
  width: 40px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 12px auto 0; flex-shrink: 0;
}
.lineup-modal-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.lineup-modal-title { font-size: 17px; font-weight: 700; }
.lineup-close {
  width: 30px; height: 30px; border-radius: 50%; background: var(--bg4);
  display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--t2);
}
.lineup-list {
  overflow-y: auto; flex: 1; padding: 8px 0;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}

.lineup-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
}
.lineup-row:last-child { border-bottom: none; }
.lineup-row:hover { background: var(--glass-bg); }

.lineup-row-img {
  width: 66px; height: 66px; border-radius: 14px;
  object-fit: cover; object-position: top; flex-shrink: 0;
}
.lineup-row-info { flex: 1; min-width: 0; }
.lineup-row-name { font-size: 16px; font-weight: 700; }
.lineup-row-role { font-size: 13px; color: var(--t2); font-weight: 500; margin-top: 3px; }
.lineup-row-know {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 700; color: var(--brand-start); margin-top: 6px;
}

/* vibe/genre tags */
.vibe-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.vibe-tag {
  padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
}
.vibe-tag.active {
  background: var(--brand-grad); border-color: transparent; color: #fff;
}

/* press logos */
.press-row {
  display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none;
  padding-bottom: 4px; align-items: center;
}
.press-row::-webkit-scrollbar { display: none; }
.press-logo {
  flex-shrink: 0; height: 28px; opacity: 0.45;
  filter: grayscale(1); transition: opacity .2s, filter .2s;
}
.press-logo:hover { opacity: 0.85; filter: grayscale(0); }

.press-logo-text {
  flex-shrink: 0; padding: 5px 14px; border-radius: 8px;
  background: var(--bg4); border: 1px solid var(--border);
  font-size: 12px; font-weight: 800; color: var(--t3); white-space: nowrap;
}

/* track preview card */
.track-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px; border-radius: 16px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(10px); margin-bottom: 10px;
}
.track-art {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.track-info   { flex: 1; min-width: 0; }
.track-title  { font-size: 14px; font-weight: 700; }
.track-meta   { font-size: 12px; color: var(--t3); font-weight: 500; margin-top: 3px; }
.track-play   {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  box-shadow: 0 3px 12px rgba(255,42,140,.3);
}

/* ── 19. Event Page ─────────────────────────────── */

/* — sticky event bar (price + book tickets) — */
.event-bar {
  position: fixed; bottom: 0; left: 50%; translate: -50% 0;
  width: 100%; max-width: var(--app-fixed-max); z-index: 200;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}
.event-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(18,18,18,0.95);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-radius: 100px;
  padding: 8px 8px 8px 22px;
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
}
.event-price-label {
  font-size: 18px; font-weight: 800; color: #fff; line-height: 1;
}
.event-price-label small {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.48); margin-left: 4px;
}
.book-tickets-btn {
  background: #fff; color: #111; border-radius: 100px;
  font-size: 15px; font-weight: 800; padding: 13px 28px;
  font-family: 'Quicksand', sans-serif;
  transition: opacity .2s; white-space: nowrap; flex-shrink: 0;
}
.book-tickets-btn:active { opacity: .82; }
.event-bottom-spacer { height: 96px; }

/* — schedule timeline — */
.schedule-wrap { display: flex; flex-direction: column; }
.schedule-row {
  display: grid; grid-template-columns: 62px 1fr;
  gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-time {
  font-size: 12px; font-weight: 700; color: var(--brand-start);
  line-height: 1.4; padding-top: 3px; white-space: nowrap;
}
.schedule-act-name { font-size: 15px; font-weight: 700; }
.schedule-act-meta { font-size: 12px; color: var(--t3); font-weight: 500; margin-top: 3px; }
.schedule-tag {
  display: inline-block; margin-top: 7px;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  background: rgba(255,42,140,.11); color: var(--brand-start);
  border: 1px solid rgba(255,42,140,.25);
}
.schedule-tag.headliner {
  background: rgba(255,99,72,.11); color: var(--brand-end);
  border-color: rgba(255,99,72,.25);
}
.schedule-tag.workshop {
  background: rgba(99,102,241,.11); color: #818cf8;
  border-color: rgba(99,102,241,.25);
}
.schedule-tag.closing {
  background: rgba(74,222,128,.08); color: #4ade80;
  border-color: rgba(74,222,128,.25);
}

/* — FAQ accordion — */
.faq-list  { display: flex; flex-direction: column; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 15px 0; gap: 12px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--t1); text-align: left;
}
.faq-arrow { transition: transform .25s; color: var(--t3); flex-shrink: 0; font-size: 15px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--brand-start); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  font-size: 13px; font-weight: 500; color: var(--t2); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 14px; }

/* — venue card — */
.venue-card {
  border-radius: 18px; overflow: hidden;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px); margin-bottom: 14px;
}
.venue-map { width: 100%; height: 160px; overflow: hidden; position: relative; }
.venue-map img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venue-map-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.22);
  display: flex; align-items: center; justify-content: center;
}
.venue-map-pin {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 4px 24px rgba(255,42,140,.55);
}
.venue-body   { padding: 14px 16px 16px; }
.venue-name   { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.venue-addr   { font-size: 13px; color: var(--t2); font-weight: 500; line-height: 1.55; }
.venue-actions { display: flex; gap: 10px; margin-top: 13px; }
.venue-action-btn {
  flex: 1; padding: 10px 8px; border-radius: 12px;
  background: var(--bg4); border: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--t1);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .15s;
}
.venue-action-btn:active { background: var(--bg3); }

/* — sponsor chips — */
.sponsor-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.sponsor-chip {
  padding: 8px 16px; border-radius: 10px;
  background: var(--bg4); border: 1px solid var(--border);
  font-size: 12px; font-weight: 800; color: var(--t3); letter-spacing: .3px;
}

/* — ticket booking sheet — */
.ticket-sheet {
  position: fixed; bottom: 0; left: 50%; translate: -50% 0;
  width: 100%; max-width: var(--app-fixed-max); z-index: 400;
  background: var(--sheet-bg);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: 24px 24px 0 0;
  border: 1px solid var(--glass-bd); border-bottom: none;
  transform: translateY(105%);
  transition: transform .42s cubic-bezier(.32,.72,0,1);
  max-height: 90%; display: flex; flex-direction: column;
}
.ticket-sheet.open { transform: translateY(0); }
.ticket-sheet-handle {
  width: 40px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 12px auto 0; flex-shrink: 0;
}
.ticket-sheet-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 12px; border-bottom: 1px solid var(--border);
  flex-shrink: 0; gap: 10px;
}
.ticket-sheet-hd { flex: 1; min-width: 0; }
.ticket-sheet-title { font-size: 17px; font-weight: 700; }
.ticket-sheet-sub   { font-size: 12px; color: var(--t3); font-weight: 500; margin-top: 2px; }
.ticket-body {
  overflow-y: auto; flex: 1; padding: 14px 16px;
  scrollbar-width: none;
}
.ticket-body::-webkit-scrollbar { display: none; }

/* — ticket tier card — */
.ticket-tier {
  border-radius: 16px; padding: 14px; margin-bottom: 10px;
  background: var(--glass-bg); border: 1.5px solid var(--glass-bd);
  backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s;
}
.tier-top { display: flex; align-items: center; gap: 12px; }
.tier-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.tier-info    { flex: 1; min-width: 0; }
.tier-name    { font-size: 14px; font-weight: 700; }
.tier-desc    { font-size: 12px; color: var(--t2); font-weight: 500; margin-top: 2px; }
.tier-price   { text-align: right; flex-shrink: 0; }
.tier-price-main { font-size: 15px; font-weight: 800; }
.tier-price-sub  { font-size: 11px; color: var(--t3); font-weight: 500; }
.tier-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border);
}
.tier-avail        { font-size: 12px; color: var(--t3); font-weight: 500; }
.tier-avail.low    { color: #f97316; font-weight: 700; }

/* — qty stepper — */
.qty-stepper { display: flex; align-items: center; gap: 14px; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg4); border: 1.5px solid var(--border);
  font-size: 16px; font-weight: 700; color: var(--t1);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0; line-height: 1;
}
.qty-btn:not([disabled]):active { background: var(--brand-grad); border-color: transparent; color: #fff; }
.qty-btn[disabled] { opacity: .32; cursor: default; pointer-events: none; }
.qty-val { font-size: 16px; font-weight: 800; min-width: 24px; text-align: center; }

/* — booking summary — */
.ticket-summary {
  flex-shrink: 0; padding: 14px 18px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
}
.summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.summary-lbl { font-size: 13px; color: var(--t2); font-weight: 500; }
.summary-val { font-size: 13px; font-weight: 700; }
.summary-divider { height: 1px; background: var(--border); margin: 10px 0 12px; }
.summary-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total-lbl { font-size: 15px; font-weight: 700; }
.summary-total-val { font-size: 22px; font-weight: 800; color: var(--t1); }
.proceed-btn {
  width: 100%; margin-top: 14px; padding: 15px; border-radius: 16px;
  background: var(--brand-grad); color: #fff;
  font-size: 16px; font-weight: 800; font-family: 'Quicksand', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 4px 22px rgba(255,42,140,.32); transition: opacity .2s;
}
.proceed-btn:active { opacity: .88; }

/* ── 20. Event Page — More, Redesigned Bar, FAQ Sheet ─── */

/* — More section card (FAQ / T&C) — */
.more-card {
  border-radius: 16px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  backdrop-filter: blur(12px); overflow: hidden;
}
.more-row {
  display: flex; align-items: center; gap: 14px;
  width: 100%; padding: 16px 14px;
  font-size: 15px; font-weight: 600; color: var(--t1); text-align: left;
  transition: background .15s;
}
.more-row:active { background: rgba(255,255,255,0.05); }
.more-row-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--t2);
}
.more-row-text { flex: 1; }
.more-row-arr  { font-size: 14px; color: var(--t3); flex-shrink: 0; }
.more-card-divider { height: 1px; background: var(--border); margin: 0 14px; }

/* — Redesigned event sticky bar (District-style) — */
.event-bar {
  position: fixed; bottom: 0; left: 50%; translate: -50% 0;
  width: 100%; max-width: var(--app-fixed-max); z-index: 200;
}
.event-bar-card {
  background: rgba(12,12,14,0.97);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(255,255,255,0.09); border-bottom: none;
  overflow: hidden;
}
.reserve-banner {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  background: linear-gradient(90deg, #2e1065, #1e1b4b, #312e81);
}
.reserve-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #3730a3;
}
.reserve-text {
  flex: 1; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.90); line-height: 1.35;
}
.reserve-info-btn {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 12px;
}
.event-bar-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
}
.event-sale-label {
  font-size: 11px; font-weight: 700; color: #4ade80;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px;
}
.event-price-main {
  font-size: 20px; font-weight: 800; color: #fff; line-height: 1;
}
.event-price-main small {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.48); margin-left: 4px;
}
.event-bottom-spacer { height: 140px; }

/* — FAQ bottom sheet — */
.faq-sheet {
  position: fixed; bottom: 0; left: 50%; translate: -50% 0;
  width: 100%; max-width: var(--app-fixed-max); z-index: 402;
  background: var(--sheet-bg);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: 24px 24px 0 0;
  border: 1px solid var(--glass-bd); border-bottom: none;
  transform: translateY(105%);
  transition: transform .42s cubic-bezier(.32,.72,0,1);
  max-height: 88%; display: flex; flex-direction: column;
}
.faq-sheet.open { transform: translateY(0); }
.faq-sheet-body {
  overflow-y: auto; flex: 1; padding: 4px 18px 24px;
  scrollbar-width: none;
}
.faq-sheet-body::-webkit-scrollbar { display: none; }

/* ══════════════════════════════════════════════
   RESPONSIVE — viewport height breakpoints
   Goal: hero + India Tour badge + artist name + tags
         are always visible above the sticky bottom bar
         on every mobile screen size.
══════════════════════════════════════════════ */

/* Short phones (e.g. Samsung Galaxy A-series, Pixel 4a, older iPhones ~700px)
   The svh formula above handles modern browsers; these rules are the explicit
   fallback for browsers that don't support svh/dvh units. */
@media (max-height: 700px) {
  .hero-wrap    { height: 54vh; }
  .artist-name  { font-size: 26px; }
  .artist-header { padding: 14px 16px 12px; }
  .tour-badge   { margin-bottom: 7px; }
  .stat-cell    { padding: 9px 6px; }
  .stat-val     { font-size: 14px; }
}

/* Very short phones (e.g. iPhone SE 1st gen, small Android ~620px) */
@media (max-height: 620px) {
  .hero-wrap    { height: 46vh; }
  .artist-name  { font-size: 23px; }
  .artist-header { padding: 12px 16px 10px; }
  .tour-badge   { font-size: 10px; padding: 4px 12px; margin-bottom: 6px; }
  .tag-row      { margin-bottom: 10px; }
  .stat-row     { display: none; } /* sacrifice stats so name+tags stay visible */
}

/* shake animation for form validation */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-5px); }
  40%,80%  { transform: translateX(5px); }
}
.shake { animation: shake .28s ease-in-out; }




/* Artist profile page wiring:
   shell, custom uploaded media, and wider responsive layouts. */

body.artist-page {
  max-width: none;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
}

.artist-page-shell {
  width: min(1120px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
}

.artist-content-layout {
  width: min(920px, 100%);
  margin: 0 auto;
}

.hero-stage {
  overflow: hidden;
}

.hero-summary {
  margin: 0 0 14px;
  color: var(--t2);
  font-weight: 600;
  line-height: 1.65;
}

.social-text small {
  overflow-wrap: anywhere;
}

.gallery-item.is-video,
.gallery-item.is-youtube {
  cursor: pointer;
}

.gallery-item.is-video::after,
.gallery-item.is-youtube::after {
  content: "Video";
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.gallery-item.is-youtube::after {
  content: "YouTube";
}

.gallery-item.is-video .gallery-more,
.gallery-item.is-youtube .gallery-more {
  display: none;
}

.gm-thumb.active {
  border-color: var(--brand-start);
}

.profile-footer {
  padding: 18px 16px 4px;
  color: var(--t2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
}

.profile-footer span {
  color: var(--brand-start);
}

.bottom-spacer {
  height: 36px;
}

@media (max-width: 767px) {
  .artist-page .nav {
    max-width: var(--app-fixed-max);
  }
}

@media (min-width: 768px) {
  body.artist-page {
    background:
      radial-gradient(circle at 20% 0%, rgba(255, 42, 140, 0.12), transparent 34%),
      radial-gradient(circle at 80% 12%, rgba(255, 99, 72, 0.1), transparent 32%),
      var(--bg);
  }

  .artist-page .nav {
    width: min(1120px, calc(100% - 32px));
    max-width: 1120px;
  }

  .artist-page-shell {
    width: min(1120px, calc(100% - 32px));
    padding: 18px 0 48px;
    background: transparent;
  }

  .hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    align-items: stretch;
    border: 1px solid var(--glass-bd);
    border-radius: 30px;
    background: var(--glass-bg);
    box-shadow: var(--glass-sh);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .hero-wrap {
    height: min(72svh, 720px);
    min-height: 520px;
  }

  .artist-header {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: clamp(26px, 4vw, 48px);
  }

  .artist-name {
    font-size: clamp(42px, 5.4vw, 78px);
  }

  .artist-content-layout {
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .section {
    border: 1px solid var(--glass-bd);
    border-radius: 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .section-gallery,
  .section-feedback {
    grid-column: 1 / -1;
  }

  .divider {
    display: none;
  }

  .gallery-grid:not(.row) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
}
