/* =========================
   Base Reset & Defaults
   ========================= */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* =========================
   Navigation
   ========================= */

header {
  border-bottom: 1px solid #e6e6e6;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  font-size: 0.95rem;
  color: #333;
}

nav a:hover {
  text-decoration: underline;
}

/* =========================
   Hero Section Layout
   ========================= */

#hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px;
  min-height: 85vh;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;

  background-image:
    linear-gradient(to right, #ffffff 60%, rgba(255,255,255,0.85)),
    url("../images/hero/hero-image.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

/* =========================
   Hero – Left Column
   ========================= */

.hero-main {
  max-width: 720px;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

#hero p {
  max-width: 620px;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 32px;
}

/* =========================
   Podcast Platform Buttons
   ========================= */

.cta-group {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.cta-group a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 140px;      /* identical width */
  height: 44px;      /* identical height */

  border: 1px solid #d0d0d0;
  border-radius: 6px;

  background: transparent;
  text-decoration: none;

  box-sizing: border-box;
}

.cta-group a:hover {
  border-color: #9a9a9a;
}

.cta-group img {
  max-height: 20px;
  max-width: 80px;
  display: block;
}

/* =========================
   Hero Highlight Box
   ========================= */

.hero-highlight {
  margin-top: 28px;
  background: #f6f7f8;
  border-left: 4px solid #0a66c2;
  padding: 24px;
  max-width: 620px;
}

.hero-highlight h3 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  color: #0a66c2;
}

.hero-highlight p {
  font-size: 0.95rem;
  color: #333;
}

/* =========================
   Hero – Right Column
   ========================= */

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* =========================
   Prominent Logo
   ========================= */

.hero-logo img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* =========================
   Context Section
   ========================= */

#about-site {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
}

#about-site p {
  max-width: 760px;
  font-size: 1rem;
  color: #444;
}

/* =========================
   Footer
   ========================= */

footer {
  border-top: 1px solid #e6e6e6;
  padding: 24px 32px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* =========================
   Responsive Behaviour
   ========================= */

@media (max-width: 900px) {

  #hero {
    grid-template-columns: 1fr;
    background-image: none;
    min-height: auto;
  }

  #hero h1 {
    font-size: 2.4rem;
  }

  .hero-right {
    margin-top: 48px;
  }

  .hero-logo img {
    max-width: 220px;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-right: 16px;
  }
}
