/* Unified Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Source+Sans+Pro:wght@400;600&family=Marcellus&display=swap');

:root {
  --bg: #fdfaf6;
  --text: #2e2e2e;
  --accent: #b17d5d;
  --hover: #8b4d33;
  --max-width: 800px;
  --font-heading: 'Playfair Display', serif;
  --font-name: 'Marcellus', serif;
  --font-body: 'Source Sans Pro', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 2rem 1rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

header {
  padding: 2rem 0 1rem;
  text-align: center;
  background: var(--bg);
}

.logo {
  text-align: center;
  margin-bottom: 0.5rem; 
}

.logo-img {
  width: 100%;
  max-width: 600px;
  min-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

section {
  margin: 2rem 0;
  padding: 0 1rem;
}

h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--accent);
}

ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

audio {
  display: block;
  margin: 1rem 0;
  max-width: 100%;
}

#playlist {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
}

#playlist a {
  display: inline-block;
  padding: 0.25rem 0;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

#playlist a:hover {
  color: var(--hover);
  text-decoration: underline;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--hover);
  outline: none;
  text-decoration: underline;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  margin: 3rem 0 1rem;
}
