:root {
  --ink: #1b1b1b;
  --paper: #faf9f7;
  --card: #ffffff;
  --accent: #AD1F00;
  --radius: 16px;
  --host-bg: #7e5c65;
  --about-bg: #69606f;
}

/* --- GENERAL --- */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.65;

  /* Static watercolor-inspired background */
  background: linear-gradient(120deg, #f9f5ff 0%, #e6f0ff 40%, #fdf6f2 80%);
  background-size: cover;
}

#page { max-width: 1100px; margin: 0 auto; padding: 1rem; }

/* --- HEADER --- */
.site-header h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

/* --- EPISODES --- */
.episodes { display: flex; flex-direction: column; gap: 2.5rem; }

.episode {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.episode img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.episode-body h2 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 0.10em;
  margin: 0 0 0.6rem;
  color: var(--accent);
}

audio { width: 100%; margin: 0.8rem 0 1rem; border-radius: 10px; }

.support {
  font-size: 0.9rem;
  opacity: 0.85;
}

a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; color: #d4af37; }

/* --- ABOUT SECTION --- */
.about {
  margin: 4rem 0 0 0;
  background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.1)), url('bg_about.jpg') repeat;
  background-size: cover;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.about h1 {
  font-family: 'Bebas Neue', cursive;
  text-align: center;
  color: var(--lavender);
  position: relative;
  letter-spacing: 0.10em;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}


/* --- HOST SECTION --- */
.host {
  margin: 4rem 0rem 0rem 0rem;
  background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.1)), url('bg_host.jpg') repeat;
  background-size: cover;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.host h1 {
  font-family: 'Bebas Neue', cursive;
  text-align: center;
  color: var(--lavender);
  letter-spacing: 0.10em;
}

.host-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.host-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}


/* --- FOOTER --- */
#siteinfo { text-align: center; padding: 3rem 0 1rem; font-size: 0.9rem; }
.socials a:hover { text-decoration: none; color: #d4af37; }
.fa { margin: 0 0.6rem; font-size: 1.2rem; color: var(--accent);}
.newsletter {
 font-size:1rem;
}
.copyright {
  margin-top: 30px;
  font-size: 0.75em;
  color: #777;
}



@media (min-width: 900px) {
  .episode { display: flex; gap: 2rem; }
  .episode img { flex: 0 0 260px; margin-bottom: 0; }
  .host-content, .about-content { flex-direction: row; text-align: left; gap: 2rem; justify-content: flex-start; align-items:left; padding: 0; }
  .site-header h1 {font-size:3rem;}
  .host-content img, .about-content img {width:300px; }
}
