/* Top-nav social icon row */
.top-social-links {
  grid-area: social;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  margin-bottom: 0;
  justify-self: start;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  padding: 6px;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-icon[data-platform="TikTok"] img,
.social-icon[data-platform="YouTube"] img {
  transform: scale(1.15);
}

.social-icon:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
:root {
  color-scheme: dark;
  --bg: #181a23;
  --panel: #23253a;
  --panel-alt: #292b3e;
  --text: #f7f7fa;
  --muted: #b3b8c7;
  --accent: #3fc476;
  --accent-light: #3edb7a;
  --accent-dark: #169143;
  --player-bg: #23253a;
  --player-border: #282a36;
  --player-shadow: 0 8px 24px rgba(30, 185, 84, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --highlight: #ff5e62;
  --highlight-light: #ffb88c;
  --highlight-dark: #c0392b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.hero {
  padding: 32px 7vw 72px;
  background-size: cover;
  background: linear-gradient(180deg, rgba(29, 185, 84, 0.12) 0%, rgba(35, 37, 58, 0.95) 100%), var(--bg);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "social brand links";
  align-items: center;
  justify-items: stretch;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  grid-area: brand;
  justify-self: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  height: 72px;
  max-width: 220px;
  vertical-align: middle;
}

.nav-links {
  grid-area: links;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  font-size: 1.1rem;
}

.nav-links a {
  padding: 6px 0;
}

.nav-toggle {
  display: none;
  grid-area: toggle;
  width: 32px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 2.6vw + 1rem, 3.5rem);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--player-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 12px
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(29, 185, 84, 0.35);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

#spotify-cta {
  min-width: 240px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 24px 0;
}

.hero-media img {
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.section {
  padding: 72px 7vw;
}

.section.alt {
  background: var(--panel);
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 1.5vw + 1rem, 2.6rem);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--panel-alt);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.card .meta {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery figure {
  margin: 0;
  display: grid;
  gap: 8px;
}

.gallery img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

.gallery figcaption {
  padding: 0 2px;
  font-size: 0.92rem;
  color: var(--muted);
}

.merch {
  background: linear-gradient(120deg, rgba(29, 185, 84, 0.16), rgba(255, 96, 182, 0.08));
  padding: 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--accent);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 460px);
  gap: 24px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  padding: 14px 16px;
  background: var(--panel-alt);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.social-embed {
  background: var(--panel-alt);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  min-height: 320px;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
}

.social-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 12px;
}



.footer {
  padding: 32px 7vw 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--accent);
  color: var(--muted);
}

.footer a {
  color: var(--text);
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "links links"
      "social social";
    gap: 12px;
    margin-bottom: 24px;
  }

  .brand img {
    height: 56px;
    max-width: 180px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    justify-self: start;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .top-social-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .merch {
    flex-direction: column;
    align-items: flex-start;
  }
}
