/* === Variables === */
:root {
  --espresso: #1C1414;
  --espresso-surface: #2A1A18;
  --espresso-surface-mauve: #2A1020;
  --cream: #FDF6F0;
  --nude: #E8C4A8;
  --mauve: #8C4A6E;
  --blush: #D4A0BA;
  --blush-bg: #F9EEF5;
  --blush-border: #D4A0BA;
  --blush-icon-bg: #EDD6E6;
  --terracotta: #C4784A;
  --border-dark: #5A2E4A;
  --muted-dark: #A08070;
  --muted-mauve: #7A4A65;
  --muted-brown: #7A5C4E;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --radius-card: 14px;
  --radius-pill: 24px;
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

/* === Container === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(42px, 7vw, 68px);
}

h1 em {
  font-weight: 400;
  font-style: italic;
}

.hero h1 em .typewriter-text {
  border-right: 2px solid var(--blush);
  padding-right: 2px;
  animation: blink 0.6s step-end infinite;
}

.hero h1 em .typewriter-text.done {
  border-right-color: transparent;
  animation: none;
}

@keyframes blink {
  50% { border-color: transparent; }
}

h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.overline-blush {
  color: var(--blush);
}

.overline-mauve {
  color: var(--mauve);
}

.section-subtitle {
  font-size: 16px;
  max-width: 520px;
  line-height: 1.6;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 0.5px solid transparent;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--mauve);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--blush);
  border-color: var(--blush);
}

.btn-light {
  background: #fff;
  color: var(--mauve);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--espresso);
  border-bottom: 0.5px solid var(--border-dark);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--blush);
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
}

/* === Hero === */
.hero {
  background: var(--espresso);
  padding: 160px 0 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero .container {
  max-width: 1200px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero .overline {
  color: var(--blush);
  font-size: 14px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-subtitle {
  color: var(--muted-dark);
  font-size: 21px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* === Sections === */
.section {
  padding: 96px 0;
}

.section-light {
  background: var(--cream);
}

.section-dark {
  background: var(--espresso);
  color: var(--cream);
}

.section-dark h2 {
  color: var(--cream);
}

.section-dark .section-subtitle {
  color: var(--muted-dark);
}

.section-blush {
  background: var(--blush-bg);
}

.section-mauve {
  background: var(--mauve);
  color: #fff;
}

.section-mauve h2 {
  color: #fff;
}

/* === About / O podcastu === */
.about-centered {
  text-align: center;
  margin-top: 40px;
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
}

.about-text p {
  color: var(--muted-brown);
  font-size: 15px;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--espresso);
  font-weight: 500;
}

.about-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-card {
  background: var(--espresso);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: var(--mauve);
}

.about-card-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--border-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.about-card-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blush);
  margin-bottom: 8px;
}

.about-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.65;
}

/* === Benefits === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  background: #fff;
  border: 0.5px solid var(--blush-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blush-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 22px;
  color: var(--mauve);
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted-mauve);
  line-height: 1.6;
}

/* === Episodes === */
.episodes-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.episode-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--espresso-surface);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-card);
  padding: 28px 32px;
}

.episode-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--border-dark);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.episode-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blush);
  background: var(--espresso-surface-mauve);
  border: 0.5px solid var(--border-dark);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 10px;
}

.episode-info h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}

.episode-info p {
  font-size: 14px;
  color: var(--muted-dark);
  line-height: 1.6;
}

.episodes-cta {
  margin-top: 36px;
  text-align: center;
}

/* === Host / O mně === */
.host-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: center;
}

.host-photo-placeholder {
  width: 280px;
  height: 340px;
  background: var(--blush-bg);
  border: 0.5px solid var(--nude);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-photo-placeholder i {
  font-size: 64px;
  color: var(--blush);
}

.host-lead {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.5;
  margin-bottom: 20px;
}

.host-text p {
  color: var(--muted-brown);
  font-size: 15px;
  margin-bottom: 14px;
}

.host-text strong {
  color: var(--espresso);
  font-weight: 500;
}

/* === CTA Section === */
.cta-section {
  text-align: center;
  max-width: 580px;
}

.cta-section p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Footer === */
.footer {
  background: var(--espresso);
  border-top: 0.5px solid var(--border-dark);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted-dark);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--blush);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  font-size: 18px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  color: var(--cream);
  border-color: var(--blush);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted-dark);
  margin-top: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--espresso);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 0.5px solid var(--border-dark);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 130px 0 72px;
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .about-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .episode-card {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .episode-number {
    font-size: 28px;
  }

  .host-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }

  .host-photo-placeholder {
    width: 200px;
    height: 240px;
  }

  .host-text {
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }
}
