:root {
  --navy: #071b33;
  --navy-light: #0e2d4f;
  --blue: #155b8f;
  --orange: #f26a1b;
  --gold: #c9983d;
  --charcoal: #2c333a;
  --light: #f5f7fa;
  --white: #ffffff;
  --muted: #6b7280;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--navy);
}

a {
  text-decoration: none;
  color: inherit;
}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* ==================================================
   HEADER SECTION START
================================================== */

.site-header {
  height: 82px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 32px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shaddow:0 2px 10px rgba(0,0,0,.15);
  border-bottom:2px solid #c9983d;
  
}

.logo img {
  display: block;
  height: 54px;
  width: auto;
}

nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

nav a{
  Transition:.25s;
}

Nav a:hover{
color:#f26a1b;
}

.contact-btn {
  background: var(--orange);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .site-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  nav {
    flex-wrap: wrap;
    margin-left: 0;
  }
}

/* ==================================================
   HEADER SECTION END
================================================== */


.hero {
  background:
    linear-gradient(rgba(11, 31, 58, 0.94), rgba(11, 31, 58, 0.94)),
    url("images/podcast-hero.png") center/cover no-repeat;
  color: var(--white);
  padding: 115px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.podcast-art {
  display: flex;
  justify-content: center;
}

.podcast-art{
    display:flex;
    justify-content:center;
    align-items:center;
}

.podcast-cover{

    width:360px;
    max-width:100%;
    height:auto;

    display:block;

    border-radius:18px;

    box-shadow:
        0 25px 55px rgba(0,0,0,.28);

    transition:.35s ease;
}

.podcast-cover:hover{

    transform:
        translateY(-8px)
        scale(1.02);

}

.intro {
  padding: 75px 0 45px;
  text-align: center;
}

.intro h2,
.episodes h2,
.themes h2 {
  color: var(--navy);
  font-size: 2.3rem;
  margin-bottom: 18px;
  text-align: center;
}

.intro p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.listen {
  padding: 45px 0 80px;
}

.listen-box {
  background: var(--light);
  padding: 42px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
}

.listen-box h2 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 12px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.platform-links a {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.platform-links a:hover {
  background: var(--charcoal);
}

.episodes {
  background: var(--light);
  padding: 85px 0 95px;
}

.episode-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.episode-card {
  background: var(--white);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.episode-card.featured {
  background: var(--navy);
  color: var(--white);
}

.episode-card.featured h3 {
  color: var(--white);
}

.episode-number {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.episode-card h3 {
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.episode-card p {
  margin-bottom: 22px;
}

.episode-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.episode-card.featured a {
  color: var(--gold);
}

.episode-card a:hover {
  color: var(--gold);
}

.themes {
  padding: 90px 0;
  text-align: center;
}

.theme-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.theme-grid div {
  background: var(--light);
  padding: 30px;
  border-radius: 18px;
  border-top: 5px solid var(--gold);
}

.theme-grid span {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.guest-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 90px 0;
}

.guest-box {
  background: rgba(255, 255, 255, 0.07);
  padding: 46px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
}

.guest-box h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.guest-box p {
  max-width: 780px;
}

.cta {
  background: var(--navy);
  color: var(--white);
  padding: 85px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn:hover {
  background: #d8b75f;
}

.site-footer {
  background: #20252b;
  color: var(--white);
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

@media (max-width: 1000px) {
  .hero-grid,
  .episode-grid,
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listen-box,
  .guest-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    gap: 18px;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 8px 10px;
  }

  .hero-grid,
  .episode-grid,
  .theme-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 85px 0;
  }

  .podcast-cover{   
    width:280px;
  }
}