/* Percy & Persephone — cutesy hand-drawn indie-folk, Juno-style */

:root {
  --paper: #faf6ec;
  --ink: #1e1a16;
  --kitty-green: #5cb531;
  --kitty-green-dark: #3f8a1e;
  --burnt-orange: #c65b2e;
  --desert-tan: #c6a27a;
  --desert-tan-dark: #8a613f;
  --pencil: #8a8172;
  --card: #fffdf6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  /* faint notebook-grid texture */
  background-image:
    linear-gradient(rgba(138, 129, 114, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 129, 114, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: "Special Elite", "Courier New", monospace;
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: "Amatic SC", cursive;
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: var(--burnt-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--kitty-green-dark);
}

/* ---------- hero ---------- */

.hero {
  text-align: center;
  padding: 4.5rem 1.25rem 3.5rem;
}

.hero-doodle {
  width: 110px;
  height: auto;
  transform: rotate(-6deg);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(3.2rem, 10vw, 5.5rem);
  letter-spacing: 0.04em;
}

.hero .amp {
  color: var(--burnt-orange);
  text-shadow: 2px 2px 0 rgba(198, 162, 122, 0.45);
}

.tagline {
  font-style: italic;
  color: var(--pencil);
  margin-top: 0.25rem;
}

.hero nav {
  margin-top: 1.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.hero nav a {
  margin: 0 0.6rem;
  text-decoration: none;
  border-bottom: 2px dashed var(--burnt-orange);
  padding-bottom: 2px;
}

.hero nav span {
  color: var(--pencil);
}

/* ---------- sections ---------- */

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

section {
  margin-bottom: 4.5rem;
}

section h2 {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--burnt-orange);
  margin-bottom: 1.25rem;
  transform: rotate(-1.5deg);
  display: inline-block;
}

section h2::after {
  content: "";
  display: block;
  height: 3px;
  background: var(--desert-tan-dark);
  border-radius: 50% / 100%;
  margin-top: 2px;
  transform: rotate(0.8deg);
}

/* ---------- single ---------- */

.single-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--card);
  border: 2px solid var(--desert-tan-dark);
  border-radius: 14px 255px 15px 225px / 255px 14px 225px 15px; /* wobbly sketch border */
  padding: 2rem;
  box-shadow: 4px 4px 0 rgba(30, 26, 22, 0.15);
}

.cover {
  width: 280px;
  max-width: 100%;
  height: auto;
  border: 2px solid var(--desert-tan-dark);
  transform: rotate(-2deg);
  box-shadow: 5px 5px 0 rgba(30, 26, 22, 0.12);
  flex-shrink: 0;
}

.single-info h3 {
  font-size: 2.4rem;
  transform: rotate(-0.5deg);
}

.release-date {
  color: var(--burnt-orange);
  font-style: italic;
  margin: 0.25rem 0 1rem;
}

.blurb {
  margin-bottom: 1.5rem;
}

.listen-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.listen-btn {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 12px 60px 14px 55px / 55px 14px 60px 12px;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.95rem;
  transition: transform 0.1s ease;
}

.listen-btn:hover {
  background: var(--kitty-green);
  color: var(--ink);
  transform: rotate(-2deg) scale(1.05);
}

.credit {
  font-size: 0.8rem;
  color: var(--pencil);
  line-height: 1.5;
}

/* ---------- tour ---------- */

.tour-note {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.tour-dates {
  width: 100%;
  border-collapse: collapse;
}

.tour-dates td {
  padding: 0.85rem 1rem;
  border-bottom: 2px dashed var(--pencil);
}

.tour-dates tr:first-child td {
  border-top: 2px dashed var(--pencil);
}

.tour-dates .date {
  font-weight: bold;
  white-space: nowrap;
  color: var(--burnt-orange);
}

.tour-dates .venue {
  font-style: italic;
  color: var(--pencil);
}

/* ---------- about ---------- */

.bios {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.bio {
  flex: 1 1 280px;
  background: var(--card);
  border: 2px solid var(--desert-tan-dark);
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  padding: 1.5rem 1.75rem;
  box-shadow: 4px 4px 0 rgba(30, 26, 22, 0.15);
}

.bio:first-child {
  transform: rotate(-0.7deg);
}

.bio:last-child {
  transform: rotate(0.7deg);
}

.bio h3 {
  font-size: 2rem;
  color: var(--burnt-orange);
  margin-bottom: 0.5rem;
}

.about-footer {
  margin-top: 1.75rem;
  font-style: italic;
  color: var(--pencil);
  text-align: center;
}

/* ---------- footer ---------- */

footer {
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
  border-top: 2px dashed var(--pencil);
  font-size: 0.9rem;
}

.copyright {
  color: var(--pencil);
  margin-top: 0.5rem;
}

/* ---------- mobile ---------- */

@media (max-width: 680px) {
  .single-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .listen-links {
    justify-content: center;
  }

  .tour-dates .city {
    display: none;
  }
}
