:root {
  --navy: #0F2A3A;
  --red: #C2352B;
  --offwhite: #F3EDE7;
  --grout: #B2B0A6;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background: var(--offwhite); color: #222; }

/* Header with subway tile background */
.site-header {
  position: relative;
  width: 100%;
  background-color: var(--offwhite);
background-image: url('header-bg.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: repeat;

}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo {
  height: 250px;
  width: auto;
}

/* Navigation */
.nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav a {
  text-decoration: none;
  font-weight: bold;
  color: var(--navy);
}
.nav a:hover {
  color: var(--red);
}

.socials {
  text-align: center;
  padding: 2rem 0;
  background: #f5f5f5;
}

.socials a {
  margin: 0 0.5rem;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.socials a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: var(--red);
  color: white;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }
.btn {
  background: white;
  color: var(--red);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
.btn:hover { background: var(--offwhite); }

/* Main */
.main {
  display: flex;
  gap: 2rem;           /* Space between columns */
}

.main > section {
  flex: 1;             /* Each column takes equal width */
}

.Podcast {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 100px 20px;
}


/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: var(--navy);
  color: white;
}
