/* =========================================
   MAN UP & SPEAK UP PODCAST WEBSITE
   Brand CSS
   ========================================= */

/* ---------- GLOBAL VARIABLES ---------- */

:root {
  --bg-dark: #020d1c;
  --bg-dark-2: #07182d;
  --bg-card: #0b1f36;

  --blue: #1688ff;
  --blue-light: #46a7ff;
  --blue-dark: #0865c7;

  --white: #ffffff;
  --text-light: #dce8f5;
  --text-muted: #91a4b8;

  --border: rgba(255, 255, 255, 0.1);

  --shadow: 0 12px 35px rgba(0, 0, 0, 0.35);

  --radius-small: 8px;
  --radius-medium: 14px;
  --radius-large: 22px;

  --max-width: 1200px;
}


/* ---------- RESET ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(
      circle at top,
      #0d2947 0%,
      var(--bg-dark) 45%,
      #010811 100%
    );
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}


/* =========================================
   NAVIGATION
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(2, 13, 28, 0.94);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: var(--max-width);
  margin: auto;
  min-height: 75px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5%;
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 700;

  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--blue);
}


/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  min-height: 85vh;

  display: flex;
  align-items: center;

  padding: 80px 0;

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: rgba(22, 136, 255, 0.12);

  filter: blur(90px);

  top: -100px;
  right: -100px;

  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.hero-label {
  color: var(--blue);

  font-weight: 800;
  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);

  line-height: 0.95;

  text-transform: uppercase;

  font-weight: 900;

  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--blue);
}

.hero p {
  color: var(--text-light);

  font-size: 1.25rem;

  max-width: 650px;

  margin-bottom: 30px;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;

  justify-content: center;
  align-items: center;

  padding: 14px 26px;

  border-radius: var(--radius-small);

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.6px;

  cursor: pointer;

  border: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);

  box-shadow: 0 10px 30px rgba(22, 136, 255, 0.3);
}

.btn-primary:hover {
  background: var(--blue-light);

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(22, 136, 255, 0.4);
}

.btn-outline {
  border: 2px solid var(--blue);

  color: var(--blue);

  margin-left: 10px;

  background: transparent;
}

.btn-outline:hover {
  background: var(--blue);

  color: var(--white);

  transform: translateY(-3px);
}


/* =========================================
   SECTION STYLING
   ========================================= */

section {
  padding: 85px 0;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading .eyebrow {
  color: var(--blue);

  text-transform: uppercase;

  font-weight: 800;

  letter-spacing: 2px;

  margin-bottom: 5px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);

  text-transform: uppercase;

  line-height: 1.1;
}

.section-heading p {
  color: var(--text-muted);

  max-width: 650px;

  margin-top: 12px;
}


/* =========================================
   LATEST EPISODE FEATURE
   ========================================= */

.featured-episode {
  display: grid;

  grid-template-columns: 1fr 1.5fr;

  gap: 45px;

  align-items: center;

  background:
    linear-gradient(
      135deg,
      var(--bg-card),
      rgba(11, 31, 54, 0.5)
    );

  border: 1px solid var(--border);

  border-radius: var(--radius-large);

  padding: 35px;

  box-shadow: var(--shadow);
}

.featured-episode img {
  width: 100%;

  border-radius: var(--radius-medium);

  box-shadow: var(--shadow);
}

.featured-info .episode-number {
  color: var(--blue);

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.featured-info h3 {
  font-size: 2rem;

  margin: 8px 0 15px;
}

.featured-info p {
  color: var(--text-light);

  margin-bottom: 25px;
}


/* =========================================
   EPISODE GRID
   ========================================= */

.episode-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(270px, 1fr));

  gap: 25px;
}

.episode-card {
  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius-medium);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.episode-card:hover {
  transform: translateY(-8px);

  border-color: rgba(22, 136, 255, 0.6);

  box-shadow: var(--shadow);
}

.episode-card img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;
}

.episode-card-content {
  padding: 22px;
}

.episode-card .episode-number {
  color: var(--blue);

  text-transform: uppercase;

  font-size: 0.8rem;

  letter-spacing: 1px;

  font-weight: 800;
}

.episode-card h3 {
  margin: 8px 0 12px;

  font-size: 1.25rem;
}

.episode-card p {
  color: var(--text-muted);

  margin-bottom: 18px;
}

.episode-link {
  color: var(--blue);

  font-weight: 800;
}

.episode-link:hover {
  color: var(--blue-light);
}


/* =========================================
   MISSION / ABOUT SECTION
   ========================================= */

.about-section {
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(22, 136, 255, 0.05),
      transparent
    );
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.about-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);

  line-height: 1;

  text-transform: uppercase;

  margin-bottom: 25px;
}

.about-text h2 span {
  color: var(--blue);
}

.about-text p {
  color: var(--text-light);

  font-size: 1.1rem;

  margin-bottom: 18px;
}


/* =========================================
   QUOTE SECTION
   ========================================= */

.quote-section {
  text-align: center;

  padding: 100px 20px;

  background:
    linear-gradient(
      135deg,
      rgba(22, 136, 255, 0.15),
      rgba(0, 0, 0, 0.1)
    );
}

.quote-section blockquote {
  max-width: 900px;

  margin: auto;

  font-size: clamp(2rem, 5vw, 4rem);

  font-weight: 900;

  line-height: 1.15;

  text-transform: uppercase;
}

.quote-section span {
  color: var(--blue);
}


/* =========================================
   SOCIAL / LISTEN SECTION
   ========================================= */

.listen-section {
  text-align: center;
}

.platform-links {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 30px;
}

.platform-button {
  padding: 14px 20px;

  border: 1px solid var(--border);

  border-radius: var(--radius-small);

  background: var(--bg-card);

  color: var(--white);

  font-weight: 700;

  transition: 0.25s ease;
}

.platform-button:hover {
  border-color: var(--blue);

  color: var(--blue);

  transform: translateY(-3px);
}


/* =========================================
   NEWSLETTER / EMAIL SIGNUP
   ========================================= */

.newsletter {
  background: var(--bg-card);

  border: 1px solid var(--border);

  border-radius: var(--radius-large);

  padding: 50px;

  text-align: center;

  box-shadow: var(--shadow);
}

.newsletter h2 {
  font-size: 2.5rem;

  margin-bottom: 10px;
}

.newsletter p {
  color: var(--text-muted);

  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;

  max-width: 600px;

  margin: auto;

  gap: 10px;
}

.newsletter-form input {
  flex: 1;

  padding: 15px 18px;

  border-radius: var(--radius-small);

  border: 1px solid var(--border);

  background: #04111f;

  color: var(--white);

  font-size: 1rem;

  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--blue);

  box-shadow: 0 0 0 3px rgba(22, 136, 255, 0.15);
}


/* =========================================
   PODCAST PLAYER
   ========================================= */

.podcast-player {
  margin-top: 25px;

  padding: 18px;

  background: #04111f;

  border: 1px solid var(--border);

  border-radius: var(--radius-medium);
}

audio {
  width: 100%;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
  padding: 50px 5% 25px;

  background: #010812;

  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: var(--max-width);

  margin: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;
}

.footer-brand {
  font-size: 1.2rem;

  font-weight: 900;

  text-transform: uppercase;
}

.footer-brand span {
  color: var(--blue);
}

.footer-links {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);

  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--blue);
}

.copyright {
  max-width: var(--max-width);

  margin: 30px auto 0;

  border-top: 1px solid var(--border);

  padding-top: 20px;

  color: var(--text-muted);

  font-size: 0.9rem;

  text-align: center;
}


/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 900px) {

  .featured-episode,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .featured-episode {
    padding: 25px;
  }

  .hero {
    min-height: 70vh;
  }
}


@media (max-width: 700px) {

  .navbar {
    flex-direction: column;

    padding-top: 18px;
    padding-bottom: 18px;

    gap: 14px;
  }

  .nav-links {
    gap: 15px;

    flex-wrap: wrap;

    justify-content: center;

    font-size: 0.9rem;
  }

  .hero {
    padding: 60px 0;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .btn {
    width: 100%;

    margin-bottom: 10px;
  }

  .btn-outline {
    margin-left: 0;
  }

  .newsletter {
    padding: 30px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;

    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}


/* =========================================
   OPTIONAL SCROLLBAR
   ========================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-dark);

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}


/* =========================================
   TEXT SELECTION
   ========================================= */

::selection {
  background: var(--blue);
  color: var(--white);
}