/* jlrmusic.live — clean, dark, promoter-first layout */

:root{
  --bg: #0b0b0f;
  --panel: #111121;
  --panel2: #0f0f1a;
  --text: #ffffff;
  --muted: #d6d6e0;
  --muted2: #a9a9b7;
  --accent: #8b5cf6;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 45px rgba(0,0,0,0.45);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(139,92,246,0.22), transparent 55%),
              radial-gradient(1000px 700px at 85% 35%, rgba(139,92,246,0.12), transparent 60%),
              var(--bg);
}

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

.container{
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.78)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero__content{
  position: relative;
  padding: 56px 0 72px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.brand__logo{
  width: 160px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero__title{
  margin: 0;
  font-size: clamp(44px, 5.2vw, 68px);
  letter-spacing: -0.02em;
}
.hero__subtitle{
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--muted);
}
.hero__ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero__meta{
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  max-width: 720px;
}
.meta__label{ color: var(--text); font-weight: 600; margin-right: 8px; }
.meta__link{ color: var(--text); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.35); }

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-weight: 650;
}
.btn--primary{
  border-color: rgba(139,92,246,0.65);
  background: linear-gradient(135deg, rgba(139,92,246,0.92), rgba(139,92,246,0.42));
}
.btn--ghost{
  background: rgba(0,0,0,0.25);
}

/* SOCIAL STRIP */
.social-strip{
  background: rgba(17,17,33,0.65);
  border-bottom: 1px solid var(--border);
}
.social-strip__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0;
}
.social{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
}
.social__name{ font-weight: 700; }
.social__handle{ color: var(--muted); }

/* SECTIONS */
.section{ padding: 56px 0; }
.section--tight{ padding-top: 0; }
.grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17,17,33,0.85), rgba(15,15,26,0.85));
  box-shadow: var(--shadow);
  padding: 22px;
}
.card--image{ padding: 0; overflow: hidden; }
.card--image img{ width: 100%; height: auto; display: block; }
h2{
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}
.caption{
  margin: 10px 16px 16px;
  color: var(--muted2);
  font-size: 13px;
}
.muted{ color: var(--muted2); }

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* AUDIO PLAYER */
.audio-card{
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(17,17,33,0.9),
    rgba(15,15,26,0.9)
  );
  box-shadow: var(--shadow);
}

.audio-info h2{
  margin-bottom: 6px;
}

.audio-card audio{
  width: 100%;
  height: 44px;
  filter: invert(1) hue-rotate(180deg);
  opacity: 0.95;
}

/* BOOKING */
.booking__card{
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(17,17,33,0.85);
  box-shadow: var(--shadow);
}
.booking__line{
  margin: 0 0 10px;
  color: var(--muted);
}
.booking__line span{ color: var(--text); font-weight: 700; }
.booking__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.qr{
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
}

/* FOOTER */
.footer{
  padding: 28px 0 42px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.22);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand img{
  width: 64px;
  height: auto;
  border-radius: 10px;
}
.footer__name{ font-weight: 800; }
.footer__tag{ color: var(--muted2); font-size: 13px; margin-top: 2px; }
.footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  .social-strip__inner{ grid-template-columns: 1fr; }
  .booking__card{ grid-template-columns: 1fr; }
  .brand__logo{ width: 140px; }
}
