/* =====================================================
   MUSIC AROUND THE WORLD
   MAIN WEBSITE
   ===================================================== */

:root {
  --bg: #08090d;
  --bg-soft: #0e1016;
  --card: #12151c;
  --card-hover: #181c25;

  --text: #f5f5f7;
  --muted: #9da3b0;
  --muted-2: #6f7582;

  --line: rgba(255,255,255,.09);

  --accent: #ffffff;
  --accent-soft: rgba(255,255,255,.08);

  --max-width: 1200px;

  --font-main: "Inter", sans-serif;
  --font-display: "Montserrat", sans-serif;
}


/* =====================================================
   RESET
   ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}


/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  z-index: 1000;

  border-bottom: 1px solid transparent;

  transition:
    background .3s ease,
    border-color .3s ease,
    backdrop-filter .3s ease;
}

.navbar.scrolled {
  background: rgba(8,9,13,.88);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-container {
  max-width: var(--max-width);

  height: 100%;

  margin: auto;
  padding: 0 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* LOGO */

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);

  font-size: 17px;
  font-weight: 900;

  letter-spacing: .12em;
}

.logo-sub {
  margin-top: 5px;

  font-size: 7px;
  font-weight: 600;

  letter-spacing: .36em;

  color: var(--muted);
}


/* NAV */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;

  font-size: 12px;
  font-weight: 600;

  color: var(--muted);

  transition: color .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -8px;

  height: 1px;

  background: white;
}

.nav-button {
  padding: 10px 17px;

  border: 1px solid rgba(255,255,255,.25);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .08em;

  transition:
    background .25s ease,
    color .25s ease;
}

.nav-button:hover {
  background: white;
  color: black;
}


/* MOBILE MENU */

.menu-toggle {
  display: none;

  width: 40px;
  height: 40px;

  background: transparent;
  border: 0;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 2px;

  margin: 5px auto;

  background: white;

  transition: .3s ease;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(255,255,255,.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(255,255,255,.05),
      transparent 30%
    ),
    #08090d;
}

.hero::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  right: -220px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 50%;

  box-shadow:
    0 0 0 100px rgba(255,255,255,.015),
    0 0 0 200px rgba(255,255,255,.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8,9,13,1) 0%,
      rgba(8,9,13,.92) 45%,
      rgba(8,9,13,.3) 100%
    );
}

.hero-content {
  position: relative;

  z-index: 2;

  max-width: var(--max-width);

  width: 100%;

  margin: auto;

  padding:
    130px 28px
    100px;
}

.hero-label,
.section-label {
  font-size: 10px;
  font-weight: 700;

  letter-spacing: .22em;

  color: var(--muted);

  margin-bottom: 20px;
}

.hero h1 {
  max-width: 800px;

  font-family: var(--font-display);

  font-size: clamp(52px, 8vw, 110px);

  line-height: .9;

  letter-spacing: -.055em;

  font-weight: 900;
}

.hero h1 span {
  display: block;

  color: transparent;

  -webkit-text-stroke: 1px rgba(255,255,255,.8);
}

.hero-description {
  max-width: 570px;

  margin-top: 32px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;

  margin-top: 35px;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 23px;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: .08em;

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: #ddd;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.2);

  color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
}

.hero-meta {
  display: flex;

  gap: 45px;

  margin-top: 70px;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-family: var(--font-display);

  font-size: 22px;
  font-weight: 800;
}

.hero-meta span {
  margin-top: 4px;

  color: var(--muted-2);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: .16em;
}

.hero-scroll {
  position: absolute;

  bottom: 35px;
  right: 40px;

  z-index: 3;

  display: flex;
  align-items: center;
  gap: 15px;

  transform: rotate(90deg);
  transform-origin: right center;
}

.hero-scroll span {
  font-size: 8px;

  color: var(--muted-2);

  letter-spacing: .18em;
}

.scroll-line {
  width: 55px;
  height: 1px;

  background: rgba(255,255,255,.25);
}


/* =====================================================
   GENERAL SECTIONS
   ===================================================== */

.section {
  padding: 120px 0;
}

.section-container {
  max-width: var(--max-width);

  margin: auto;

  padding: 0 28px;
}

.section-heading h2,
.section-top h2,
.live-info h2,
.research-box h2 {
  font-family: var(--font-display);

  font-size: clamp(38px, 5vw, 65px);

  line-height: .95;

  letter-spacing: -.045em;

  font-weight: 900;
}

.section-heading h2 span,
.live-info h2 span,
.research-box h2 span {
  color: var(--muted-2);
}


/* =====================================================
   ABOUT
   ===================================================== */

.about {
  background: var(--bg-soft);
}

.about-grid {
  display: grid;

  grid-template-columns:
    1.1fr
    .9fr;

  gap: 90px;

  margin-top: 70px;
}

.about-text {
  max-width: 650px;
}

.about-text p {
  color: var(--muted);

  font-size: 15px;

  line-height: 1.9;

  margin-bottom: 23px;
}

.about-text .lead {
  color: #dfe2e7;

  font-size: 18px;

  line-height: 1.75;
}

.about-text strong {
  color: white;
}

.about-stats {
  display: flex;
  flex-direction: column;

  border-top: 1px solid var(--line);
}

.stat-card {
  padding: 28px 0;

  border-bottom: 1px solid var(--line);

  display: grid;

  grid-template-columns: 45px 1fr;

  column-gap: 20px;
}

.stat-card span {
  grid-row: span 2;

  color: var(--muted-2);

  font-size: 11px;
}

.stat-card strong {
  font-size: 13px;

  letter-spacing: .1em;
}

.stat-card p {
  margin-top: 5px;

  color: var(--muted);

  font-size: 12px;
}


/* =====================================================
   EPISODES
   ===================================================== */

.episodes {
  background: var(--bg);
}

.section-top {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 30px;

  margin-bottom: 55px;
}

.section-note {
  color: var(--muted-2);

  font-size: 11px;

  letter-spacing: .08em;
}

.episode-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;
}

.episode-card {
  position: relative;

  min-height: 380px;

  padding: 25px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    linear-gradient(
      145deg,
      #151820,
      #0c0e13
    );

  border: 1px solid var(--line);

  overflow: hidden;

  transition:
    transform .3s ease,
    border-color .3s ease;
}

.episode-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -70px;
  top: -70px;

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 50%;
}

.episode-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255,255,255,.2);
}

.episode-card.featured {
  background:
    linear-gradient(
      145deg,
      #262a32,
      #101217
    );
}

.episode-number {
  position: absolute;

  top: 20px;
  right: 22px;

  font-family: var(--font-display);

  font-size: 45px;

  font-weight: 900;

  color: rgba(255,255,255,.07);
}

.episode-tag {
  font-size: 8px;

  font-weight: 700;

  letter-spacing: .18em;

  color: var(--muted-2);
}

.episode-content h3 {
  margin-top: 10px;

  font-family: var(--font-display);

  font-size: 30px;

  font-weight: 900;

  letter-spacing: -.03em;
}

.episode-content p {
  margin-top: 12px;

  min-height: 62px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.7;
}

.episode-content a {
  display: inline-block;

  margin-top: 20px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .12em;
}

.episodes-more {
  padding-top: 35px;

  text-align: center;

  color: var(--muted-2);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .18em;
}


/* =====================================================
   MUSICIANS
   ===================================================== */

.musicians {
  background: var(--bg-soft);
}

.musician-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.musician-card {
  background: var(--card);

  border: 1px solid var(--line);

  overflow: hidden;

  transition: transform .3s ease;
}

.musician-card:hover {
  transform: translateY(-5px);
}

.musician-image {
  aspect-ratio: 1 / 1.05;

  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,.1),
      transparent 45%
    ),
    #0b0d12;

  display: flex;

  align-items: center;
  justify-content: center;
}

.image-placeholder {
  color: var(--muted-2);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: .18em;
}

.musician-info {
  padding: 24px;
}

.musician-info > span {
  color: var(--muted-2);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: .15em;
}

.musician-info h3 {
  margin-top: 8px;

  font-family: var(--font-display);

  font-size: 21px;

  font-weight: 800;
}

.musician-info p {
  margin-top: 3px;

  color: var(--muted);

  font-size: 11px;
}


/* =====================================================
   LIVE
   ===================================================== */

.live-section {
  background: #0b0d12;
}

.live-wrapper {
  display: grid;

  grid-template-columns:
    .65fr
    1.35fr;

  gap: 60px;

  align-items: center;
}

.live-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 20px;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .15em;
}

.live-badge span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 12px rgba(255,255,255,.7);
}

.live-info > p:not(.section-label) {
  max-width: 470px;

  margin: 25px 0 30px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.8;
}

.youtube-placeholder {
  aspect-ratio: 16 / 9;

  border: 1px solid var(--line);

  background:
    radial-gradient(
      circle at center,
      rgba(255,255,255,.09),
      transparent 25%
    ),
    #07080b;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  color: var(--muted-2);
}

.play-button {
  width: 70px;
  height: 70px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.3);

  border-radius: 50%;

  color: white;

  font-size: 18px;

  padding-left: 3px;

  transition:
    background .3s ease,
    transform .3s ease;
}

.youtube-placeholder:hover .play-button {
  background: white;
  color: black;

  transform: scale(1.08);
}

.youtube-placeholder p {
  margin-top: 20px;

  color: #ddd;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .18em;
}

.youtube-placeholder small {
  margin-top: 4px;

  font-size: 9px;
}


/* =====================================================
   RESEARCH
   ===================================================== */

.research {
  background: var(--bg);
}

.research-box {
  padding: 55px;

  border: 1px solid var(--line);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.045),
      transparent
    );

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.research-box h2 {
  max-width: 700px;
}

.research-box p:not(.section-label) {
  max-width: 600px;

  margin-top: 20px;

  color: var(--muted);

  font-size: 13px;
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  padding: 55px 0 30px;

  background: #06070a;

  border-top: 1px solid var(--line);
}

.footer-container {
  max-width: var(--max-width);

  margin: auto;

  padding: 0 28px;

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  gap: 50px;

  align-items: start;
}

.footer-brand p {
  margin-top: 18px;

  color: var(--muted-2);

  font-size: 10px;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.footer-links a {
  color: var(--muted);

  font-size: 10px;
}

.footer-links a:hover {
  color: white;
}

.footer-credit {
  text-align: right;
}

.footer-credit p {
  margin-bottom: 8px;

  color: var(--muted-2);

  font-size: 9px;

  line-height: 1.6;
}

.footer-credit strong {
  color: var(--muted);
}


/* =====================================================
   RESPONSIVE TABLET
   ===================================================== */

@media (max-width: 900px) {

  .nav-menu {
    gap: 18px;
  }

  .episode-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .about-grid,
  .live-wrapper {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .musician-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-credit {
    text-align: left;

    grid-column: span 2;
  }

}


/* =====================================================
   RESPONSIVE MOBILE
   ===================================================== */

@media (max-width: 650px) {

  .navbar {
    height: 70px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 20px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    background: rgba(8,9,13,.97);

    border-bottom: 1px solid var(--line);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-button {
    text-align: center;

    margin-top: 5px;
  }

  .hero-content {
    padding:
      120px 20px
      80px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 75px);
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-meta {
    gap: 25px;

    margin-top: 50px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .section-top {
    display: block;
  }

  .section-note {
    margin-top: 15px;
  }

  .about-grid {
    margin-top: 45px;
  }

  .about-text .lead {
    font-size: 16px;
  }

  .episode-grid {
    grid-template-columns: 1fr;
  }

  .episode-card {
    min-height: 330px;
  }

  .musician-grid {
    grid-template-columns: 1fr;
  }

  .live-wrapper {
    gap: 40px;
  }

  .research-box {
    padding: 30px;

    flex-direction: column;

    align-items: flex-start;
  }

  .footer-container {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .footer-credit {
    grid-column: auto;
  }

  .footer-credit {
    text-align: left;
  }

}


/* =====================================================
   ACCESSIBILITY
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

}

/* =====================================================
   YOUTUBE LIVE FRAME
   ===================================================== */

.youtube-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.youtube-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
