/* Color system */
:root {
  --bg-body: #0d1117;
  --bg-elevated: #161b22;
  --bg-elevated-alt: #0b0f15;
  --border-soft: #21262d;
  --border-strong: #30363d;

  --text-main: #f0f6fc;
  --text-muted: #8b949e;
  --text-soft: #6e7681;

  --accent-main: #58a6ff;
  --accent-hard: #ff6b6b;
  --accent-afro: #f4c430;
  --accent-ukg: #9b59ff;

  --pill-bg: #161b22;
  --hero-card-bg: #0b0f15;

  --radius-soft: 10px;
  --radius-card: 12px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
}

html {
  font-size: clamp(14px, 1vw, 24px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top left, #101828 0, #020409 55%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

/* Intro screen */

#intro-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#intro-screen.intro-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.intro-welcome {
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  opacity: 0;
  margin-bottom: 24px;
  transform: translateY(-40px);
  animation: welcomeSlideDown 1.2s ease forwards;
}

.intro-logo {
  width: clamp(140px, 16vw, 420px);
  height: clamp(140px, 16vw, 420px);
  background-image: url("Images/HeadLogo.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  opacity: 0;
  animation: logoFadeIn 1.2s ease forwards;
  animation-delay: 0.5s;
}

.intro-box {
  width: clamp(280px, 30vw, 460px);
  height: clamp(60px, 8vw, 120px);
  background: #000000;
  position: relative;
  bottom: -40px;
  opacity: 0;
  animation: boxSlideUp 1.2s ease forwards;
  animation-delay: 0.5s;
}

.intro-title {
  font-size: clamp(24px, 3.5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: -58px;
  text-align: center;
  opacity: 0;
  color: #ffffff;
  animation: titleReveal 1.2s ease forwards;
  animation-delay: 0.5s;
}

/* Intro keyframes */

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes boxSlideUp {
  from { opacity: 0; bottom: -80px; }
  to { opacity: 1; bottom: 0; }
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes welcomeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(48px, 7vw, 260px);
  padding-right: clamp(48px, 7vw, 260px);
}

/* Header */

.site-title {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: clamp(18px, 2vw, 48px);
  text-transform: uppercase;
  color: var(--text-main);
  flex-shrink: 0;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background-color: rgba(2, 4, 9, 0.82);
  border-bottom: 1px solid rgba(48, 54, 61, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding-top: clamp(10px, 1vh, 24px);
  padding-bottom: clamp(10px, 1vh, 24px);
  padding-left: clamp(12px, 4vw, 40px);
  padding-right: clamp(12px, 4vw, 40px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: conic-gradient(from 150deg, #ff6b6b, #f4c430, #58a6ff, #9b59ff, #ff6b6b);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-main);
}

.main-nav {
  font-size: clamp(14px, 1.5vw, 32px);
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: normal;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: inherit;
  text-decoration: none;
  color: var(--text-muted);
  padding: 4px 0;
}

.main-nav a:hover {
  color: var(--text-main);
}

/* Hero */

.hero {
  padding: clamp(56px, 10vw, 220px) 0;
}

.hero-inner {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.6fr 1.2fr;
  }
}

.hero-text h1 {
  font-size: clamp(36px, 4.5vw, 90px);
  margin: 0 0 12px;
}

.hero-text p {
  font-size: clamp(16px, 1.3vw, 28px);
  margin: 0 0 20px;
  color: var(--text-muted);
  max-width: 620px;
}

/* Section headings shared */

.section-header h2 {
  font-size: clamp(24px, 3vw, 56px);
  margin: 0 0 4px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 540px;
  font-size: clamp(14px, 1.2vw, 26px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: clamp(14px, 1.1vw, 24px);
  padding: clamp(8px, 1vw, 16px) clamp(16px, 2vw, 28px);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.08s ease;
}

.primary-btn {
  background: var(--accent-main);
  color: #010409;
  border-color: var(--accent-main);
}

.primary-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.secondary-btn {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-soft);
}

.secondary-btn:hover {
  border-color: var(--accent-main);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pill {
  border-radius: 999px;
  background: var(--pill-bg);
  border: 1px solid var(--border-soft);
  padding: 4px 10px;
  font-size: clamp(11px, 0.9vw, 18px);
  color: var(--text-soft);
}

/* Hero right panel */

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: clamp(320px, 26vw, 520px);
  background: var(--hero-card-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #050813;
  border-bottom: 1px solid var(--border-soft);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.hero-card-title {
  margin-left: 6px;
  font-size: clamp(12px, 1vw, 22px);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-card-body {
  padding: 10px 12px 12px;
}

.track-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.track-list li {
  padding: 8px 6px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.track-list li:first-child {
  border-color: rgba(88, 166, 255, 0.5);
  background: radial-gradient(circle at top left, rgba(88, 166, 255, 0.18), transparent 60%);
}

.track-name {
  font-size: clamp(14px, 1.4vw, 28px);
}

.track-meta {
  font-size: clamp(12px, 1.1vw, 22px);
  color: var(--text-soft);
}

.hero-note {
  margin-top: 6px;
  font-size: clamp(11px, 0.9vw, 18px);
  color: var(--text-soft);
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px dashed var(--border-soft);
}

/* Sections */

.section {
  padding: clamp(48px, 8vw, 200px) 0;
}

.section-alt {
  background: radial-gradient(circle at top right, #101828 0, #020409 55%);
}

.section-header {
  margin-bottom: 24px;
}

/* Artist cards */

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 26vw, 340px), 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.artist-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artist-tag {
  font-size: clamp(11px, 0.9vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.artist-card h3 {
  font-size: clamp(20px, 2.4vw, 48px);
}

.artist-card p {
  font-size: clamp(15px, 1.3vw, 26px);
  margin: 0;
  color: var(--text-muted);
}

.artist-meta-list {
  margin: 8px 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: clamp(13px, 1.1vw, 22px);
}

.artist-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ghost-btn {
  border-color: var(--border-soft);
  background: rgba(22, 27, 34, 0.85);
  color: var(--text-main);
  font-size: clamp(12px, 1vw, 20px);
  padding-inline: 12px;
}

.ghost-btn:hover {
  border-color: var(--accent-main);
}

/* Artist accents */

.artist-hard {
  border-top: 3px solid var(--accent-hard);
}

.artist-afro {
  border-top: 3px solid var(--accent-afro);
}

.artist-ukg {
  border-top: 3px solid var(--accent-ukg);
}

/* Catalog */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 28vw, 360px), 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.catalog-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  padding: 16px 16px 18px;
}

.catalog-card h3 {
  font-size: clamp(18px, 2vw, 40px);
}

.catalog-card p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: clamp(14px, 1.2vw, 26px);
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 20px;
}

.about-text p {
  font-size: clamp(14px, 1.2vw, 26px);
  margin: 0 0 10px;
  color: var(--text-muted);
}

.about-side {
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  background: var(--bg-elevated);
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-stat-label {
  font-size: clamp(11px, 0.9vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.about-stat-value {
  font-size: clamp(14px, 1.2vw, 24px);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 20px;
}

.contact-block h3 {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.2vw, 40px);
}

.contact-block p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: clamp(14px, 1.2vw, 26px);
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-list li + li {
  margin-top: 4px;
}

.inline-link {
  font-size: clamp(14px, 1.2vw, 24px);
  color: var(--accent-main);
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 14px 0 18px;
  background: #020409;
}

.footer-inner {
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(12px, 4vw, 40px);
  padding-right: clamp(12px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 20px);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: clamp(12px, 1vw, 20px);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .artist-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 60px;
    gap: 10px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 32px;
  }

  .artist-grid,
  .catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 16px;
    flex-wrap: wrap;
  }

  .site-title {
    font-size: clamp(16px, 2vw, 34px);
  }

  .main-nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: clamp(12px, 2vw, 24px);
    font-size: clamp(14px, 1.7vw, 28px);
  }
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-menu-toggle .bar {
  width: 28px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
}

/* Mobile nav container */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(2, 4, 9, 0.95);
  border-bottom: 1px solid var(--border-soft);
  padding: 15px 20px;
  gap: 14px;
}

.mobile-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 18px;
}

/* Show hamburger + hide desktop nav on phones */
@media (max-width: 640px) {

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    width: 100%;
  }

  /* Add spacing so nav does not touch the edges */
  .mobile-nav a {
    padding-left: 5px;
  }
}

/* When active */
.mobile-nav.active {
  display: flex;
}
