/* ============================================================
   CSS CUSTOM PROPERTIES — DJ AudioPhil Brand Palette
   ============================================================ */
:root {
  --clr-bg:      #15161A; /* deep charcoal      — primary dark BG      */
  --clr-bg-alt:  #272A33; /* mid charcoal        — panel / section BG   */
  --clr-text:    #F4F0E6; /* warm off-white      — primary text          */
  --clr-orange:  #D66A2E; /* burnt orange        — primary accent        */
  --clr-gold:    #E3B243; /* golden yellow       — secondary accent      */
  --clr-teal:    #2C8D86; /* muted teal          — cool accent           */
  --clr-muted:   #8C8F9A; /* soft gray           — secondary / labels    */

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w:      1100px;
  --radius:     6px;
  --section-pad: 5rem 1.25rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section     { padding: var(--section-pad); }
.section--alt { background: var(--clr-bg-alt); }
.text-center  { text-align: center; }

.accent-orange { color: var(--clr-orange); }
.accent-gold   { color: var(--clr-gold); }
.accent-teal   { color: var(--clr-teal); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--clr-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem 7rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(44, 141, 134, 0.14) 0%, transparent 60%),
    var(--clr-bg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 800px;
}

.hero__logo {
  width: min(380px, 75vw);
  filter: drop-shadow(0 0 36px rgba(44, 141, 134, 0.45));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__sub {
  color: var(--clr-muted);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 0.3em 1.1em;
  border-radius: 100px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.65em 1.4em;
  border-radius: var(--radius);
  transition: opacity 0.2s, transform 0.15s;
}

.btn--live {
  background: var(--clr-teal);
  color: var(--clr-text);
}
.btn--live:hover { opacity: 0.85; transform: translateY(-2px); }

.btn--placeholder {
  background: var(--clr-bg-alt);
  color: var(--clr-muted);
  border: 1px solid rgba(140, 143, 154, 0.2);
  cursor: default;
  pointer-events: none;
}

/* Animated EQ bars at the bottom of the hero */
.hero__eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 0.5rem;
  opacity: 0.3;
}

.hero__eq span {
  flex: 1;
  max-width: 22px;
  border-radius: 2px 2px 0 0;
  background: var(--clr-teal);
  transform-origin: bottom;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}

/* Stagger heights and durations for each bar */
.hero__eq span:nth-child(1)  { height: 28%; animation-duration: 1.0s; }
.hero__eq span:nth-child(2)  { height: 62%; animation-duration: 1.3s; }
.hero__eq span:nth-child(3)  { height: 44%; animation-duration: 0.9s; background: var(--clr-orange); }
.hero__eq span:nth-child(4)  { height: 80%; animation-duration: 1.5s; }
.hero__eq span:nth-child(5)  { height: 52%; animation-duration: 1.1s; }
.hero__eq span:nth-child(6)  { height: 92%; animation-duration: 0.8s; background: var(--clr-gold); }
.hero__eq span:nth-child(7)  { height: 38%; animation-duration: 1.4s; }
.hero__eq span:nth-child(8)  { height: 74%; animation-duration: 1.2s; background: var(--clr-orange); }
.hero__eq span:nth-child(9)  { height: 58%; animation-duration: 1.0s; }
.hero__eq span:nth-child(10) { height: 86%; animation-duration: 0.75s; }
.hero__eq span:nth-child(11) { height: 34%; animation-duration: 1.6s; background: var(--clr-gold); }
.hero__eq span:nth-child(12) { height: 70%; animation-duration: 1.1s; }
.hero__eq span:nth-child(13) { height: 48%; animation-duration: 0.95s; background: var(--clr-orange); }
.hero__eq span:nth-child(14) { height: 88%; animation-duration: 1.35s; }
.hero__eq span:nth-child(15) { height: 42%; animation-duration: 1.5s; }
.hero__eq span:nth-child(16) { height: 65%; animation-duration: 0.85s; background: var(--clr-gold); }
.hero__eq span:nth-child(17) { height: 77%; animation-duration: 1.0s; }
.hero__eq span:nth-child(18) { height: 33%; animation-duration: 1.45s; background: var(--clr-orange); }
.hero__eq span:nth-child(19) { height: 56%; animation-duration: 1.2s; }
.hero__eq span:nth-child(20) { height: 45%; animation-duration: 0.9s; }
.hero__eq span:nth-child(21) { height: 72%; animation-duration: 1.15s; background: var(--clr-gold); }
.hero__eq span:nth-child(22) { height: 30%; animation-duration: 1.4s; }
.hero__eq span:nth-child(23) { height: 84%; animation-duration: 0.8s; background: var(--clr-orange); }
.hero__eq span:nth-child(24) { height: 50%; animation-duration: 1.3s; }
.hero__eq span:nth-child(25) { height: 66%; animation-duration: 1.05s; }
.hero__eq span:nth-child(26) { height: 39%; animation-duration: 1.55s; background: var(--clr-gold); }
.hero__eq span:nth-child(27) { height: 79%; animation-duration: 0.85s; }
.hero__eq span:nth-child(28) { height: 55%; animation-duration: 1.25s; background: var(--clr-orange); }
.hero__eq span:nth-child(29) { height: 43%; animation-duration: 1.0s; }
.hero__eq span:nth-child(30) { height: 68%; animation-duration: 0.95s; }

@keyframes eqBounce {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 700px) {
  .about__grid { grid-template-columns: 3fr 2fr; }
}

.about__text .section-title { margin-bottom: 1.25rem; }

.about__bio {
  color: var(--clr-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about__bio em {
  color: var(--clr-text);
  font-style: normal;
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-teal);
  color: var(--clr-teal);
  padding: 0.3em 0.9em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about__logo-wrap {
  display: flex;
  justify-content: center;
}

.about__logo {
  width: min(280px, 85vw);
  border: 2px solid var(--clr-teal);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--clr-bg-alt);
  box-shadow: 0 0 48px rgba(44, 141, 134, 0.2);
}

/* On mobile, put the logo above the text */
@media (max-width: 699px) {
  .about__logo-wrap { order: -1; }
}

/* ============================================================
   THE MUSIC
   ============================================================ */
.music__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.music__card {
  background: var(--clr-bg);
  border-top: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s;
}
.music__card:hover { transform: translateY(-5px); }

.music__genre {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  color: var(--clr-gold);
  margin-bottom: 0.6rem;
}

.music__artists {
  color: var(--clr-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================
   WHAT TO EXPECT (SEGMENTS)
   ============================================================ */
.segments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.segment-card {
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--clr-orange);
  transition: transform 0.2s;
}
.segment-card:hover { transform: translateY(-5px); }

.segment-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.segment-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.segment-card__desc {
  color: var(--clr-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   EPISODE LINEUP
   ============================================================ */
.episodes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.ep-card {
  background: var(--clr-bg);
  border-top: 3px solid var(--clr-teal);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.ep-card:hover { transform: translateY(-5px); }

.ep-card__num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--clr-orange);
}

.ep-card__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.ep-card__artists {
  color: var(--clr-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  flex: 1;
}

.ep-card__badge {
  display: inline-block;
  border: 1px solid var(--clr-teal);
  color: var(--clr-teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* ============================================================
   FIND ME ON (PLATFORMS)
   ============================================================ */
.platforms__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 1.25rem 2rem;
  border-radius: var(--radius);
  min-width: 110px;
  transition: transform 0.2s, opacity 0.2s;
}
.platform-link i { font-size: 2rem; }

.platform-link small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.platform-link--live {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-teal);
  color: var(--clr-text);
}
.platform-link--live:hover { transform: translateY(-5px); }

.platform-link--soon {
  background: var(--clr-bg-alt);
  border: 1px solid rgba(140, 143, 154, 0.2);
  color: var(--clr-muted);
  cursor: default;
  opacity: 0.45;
}

/* ============================================================
   LIVE APPEARANCES (VENUE)
   ============================================================ */
.venue__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 700px) {
  .venue__grid { grid-template-columns: 3fr 2fr; }
}

.venue__text .section-sub {
  margin-bottom: 1.5rem;
}

.venue__address {
  font-style: normal;
  color: var(--clr-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.venue__address i {
  color: var(--clr-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.venue__maps-btn {
  display: inline-flex;
}

.venue__next-wrap {
  display: flex;
  justify-content: center;
}

.venue__next-card {
  background: var(--clr-bg-alt);
  border-left: 3px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.venue__next-icon {
  font-size: 1.75rem;
  color: var(--clr-gold);
  margin-bottom: 0.25rem;
}

.venue__next-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--clr-text);
}

.venue__next-status {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-muted);
}

.venue__next-hint {
  font-size: 0.8rem;
  color: var(--clr-muted);
  opacity: 0.65;
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-bg-alt);
  border-top: 1px solid rgba(140, 143, 154, 0.12);
  padding: 3rem 1.25rem;
}

.footer__logo {
  width: min(110px, 40vw);
  margin: 0 auto 1.25rem;
  opacity: 0.65;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer__social a {
  color: var(--clr-muted);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--clr-teal); }

.footer__copy {
  color: var(--clr-muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
