/* =====================================================
   The Clint Collection — UncleAI
   Sunset Storybook Theme (2-Column Album Layout)
   ===================================================== */

:root {
  --bg-top: #f0e4cf;      /* warm paper sky */
  --bg-bottom: #d6b98a;   /* sunset ground */
  --card: #ffffff;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #f2b705;     /* album title yellow */
}

/* Reset / Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(var(--bg-top), var(--bg-bottom));
  color: var(--text);
}

/* =====================================================
   Layout
   ===================================================== */

.album {
  max-width: 1100px;
  margin: auto;
  padding: 32px 24px 60px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Left column sticks while scrolling */
.left-column {
  position: sticky;
  top: 24px;
}

/* =====================================================
   Album Art
   ===================================================== */

.artwork img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

/* =====================================================
   Album Info
   ===================================================== */

.info {
  margin-bottom: 36px;
}

h1 {
  font-size: 2.6rem;
  margin: 0;
}

h2 {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--muted);
  margin-top: 8px;
}

.intro {
  margin-top: 20px;
  font-style: italic;
  line-height: 1.5;
  color: #444;
}

/* =====================================================
   Tracks
   ===================================================== */

.tracks {
  margin-top: 24px;
}

.track {
  background: var(--card);
  padding: 18px 20px 20px;
  border-radius: 14px;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.track-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.track-num {
  font-weight: bold;
  color: var(--accent);
}

.track-title {
  font-size: 1.05rem;
}

/* Audio Player */
audio {
  width: 100%;
  margin: 8px 0 6px;
}

/* Download Link */
.download {
  display: inline-block;
  font-size: 0.9rem;
  color: #9a6a00;
  text-decoration: none;
}

.download:hover {
  text-decoration: underline;
}

/* =====================================================
   Footer
   ===================================================== */

footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}

/* =====================================================
   Mobile / Responsive
   ===================================================== */

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .left-column {
    position: static;
  }

  h1 {
    font-size: 2.2rem;
  }
}
