/* ---------- FONT SETUP ---------- */
@font-face {
  font-family: "OS Attempt Beta";
  src: url("fonts/OSAttemptBetav3-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "OS Attempt Beta";
  src: url("fonts/OSAttemptBetav3-Bold.otf") format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "OS Attempt Beta";
  src: url("fonts/OSAttemptBetav3-Italic.otf") format("opentype");
  font-style: italic;
}

/* ---------- GLOBAL STYLES ---------- */
body {
  font-family: "OS Attempt Beta", sans-serif;
  margin: auto;
  background: #dae700;
  color: #000;
  padding: 0;
  line-height: 1.5;
}

header {
  padding: 2rem 1rem 1rem;
  text-align: center;
}

h1 {
  font-weight: 700;
  margin: 0;
  font-size: 2rem;
  color: #ff5113;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

/* ---------- INTRO ---------- */
.intro {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.intro p {
  color: #761e35;
  font-size: 1rem;
  margin: 0;
}

.intro a {
  color: #ff5113;
  text-decoration: none;
  border-bottom: 1px solid #ff5113;
}

.intro a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* ---------- AUDIO GRID ---------- */
#audio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ---------- AUDIO CARDS ---------- */
.audio-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.audio-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.audio-card h2 {
  color: #000;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.audio-card p {
  color: #000;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

audio {
  width: 100%;
  outline: none;
  margin-top: 0.5rem;
}

/* ---------- LOGO ---------- */
.logo {
  width: 8rem;
  position: fixed;
  bottom: 1rem;
  right: 2rem;
  z-index: 1000;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.9rem;
  }
}
