@font-face {
  font-family: "Crystal Radio Kit";
  src: url("../fonts/Crystal Radio Kit.woff2") format("woff2");
}

:root {
  --bg: #cfb77f;
  --surface: #161b27;
  --surface-2: #1e2535;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --text: #e2e8f0;
  --muted: #64748b;
  --border: #2d3748;
  --player-bg: rgba(18, 24, 38, 0.95);
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-title {
  font-family: "Crystal Radio Kit", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.site-title .word-orange {
  color: #d75f02;
}

.site-title .word-yellow {
  color: #fae232;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--text);
}

/* ── Contact Bar ── */

.contact-bar {
  text-align: center;
  padding: 0.5rem;
  position: relative;
  z-index: 5;
}

.contact-bar a {
  font-family: "Crystal Radio Kit", sans-serif;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

.contact-bar a:hover {
  text-decoration: underline;
}

/* ── Hero Image ── */

.hero-image {
  height: 100vh;
  overflow: hidden;
  /* position: sticky; */
  top: 0;
  z-index: 1;
}

.hero-image img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  will-change: transform;
}

/* ── Content Row ── */

.content-row {
  display: flex;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.about-box,
.music-box {
  flex: 1;
}

.column-label {
  font-family: "Crystal Radio Kit", sans-serif;
  font-size: 24px;
  color: #000;
  margin-bottom: 0.4rem;
}

.about-column {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.music-column {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.music-box {
  border: 1px solid #000;
  padding: 1rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}

.playlist {
  overflow-y: auto;
  flex: 1;
}

.about-box {
  border: 1px solid #000;
  padding: 1rem;
  min-height: 150px;
}

.about-box p {
  font-family: Futura, "Century Gothic", "Trebuchet MS", sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-box p:last-child {
  margin-bottom: 0;
}

.about-list {
  font-family: Futura, "Century Gothic", "Trebuchet MS", sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin: 0.25rem 0 1rem 1.5rem;
}

.about-contact {
  color: #000;
  text-decoration: underline;
}

/* ── Footer ── */

.site-footer {
  height: 5vh;
  background: #000;
}

/* ── Sections ── */

main section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hidden {
  display: none;
}

/* ── Hero ── */

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

/* ── Music Player ── */

main section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.player-full {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.track-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.artwork {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--surface-2);
}

.track-name {
  font-size: 1rem;
  font-weight: 600;
}

.track-artist {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── Progress Bar ── */

.progress {
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* ── Controls ── */

.controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.controls button,
.playlist button {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.controls button:hover,
.playlist button:hover {
  background: var(--border);
  border-color: var(--muted);
}

.btn-primary-icon {
  background: var(--accent) !important;
  color: #000 !important;
  border-color: var(--accent) !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem !important;
}

.btn-primary-icon:hover {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}

/* ── Playlist ── */

.playlist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.playlist button {
  text-align: left;
  width: 100%;
}

.playlist button.active {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── About ── */

.about-content p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

/* ── Mini Player ── */

.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--player-bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  z-index: 20;
}

.mini-player img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--surface-2);
}

.mini-info {
  flex: 1;
  margin-left: 0.75rem;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-controls {
  display: flex;
  gap: 0.4rem;
}

.mini-controls button {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius);
  transition: color 0.2s;
}

.mini-controls button:hover {
  color: var(--accent);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

  .artwork {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .controls {
    flex-wrap: wrap;
  }
}
