:root {
  --primary: #1a1a1a;
  --accent: #2dd4bf;
  --bg: #ffffff;
  --text: #333;
  --font: 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

header.hero {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay for readability */
  color: white;
  text-align: center;
}

.logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

nav a {
  color: white;
  margin: 0 0.8rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--accent);
}

.banner {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.logo {
  max-width: 180px;
  margin: 1rem 0;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: var(--primary);
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: var(--accent);
}

section {
  padding: 2rem 0;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.episode img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

footer {
  background: #f5f5f5;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #777;
}
