/* ==========================================================================
   Podnikavka.cz — Dark Mode Premium Design System
   Brand color: #af333d (crimson red)
   Display font: Space Grotesk (headings)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  background: #0a0a0a;
}

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

a {
  color: #d4444f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

a:hover {
  color: #e8636d;
}

ul, ol {
  padding-left: 1.4em;
}

/* Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.04em;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 0.6em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}

p {
  margin-bottom: 1em;
}

strong {
  color: #fff;
}

/* Layout
   ========================================================================== */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 960px;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: #111;
}

.section--spacious {
  padding: 7rem 0;
}

.section-lead {
  max-width: 640px;
  margin: 1rem auto 3rem;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ccc;
}

/* Course stats pills (videokurz — Co se naučíte) */
.course-stats {
  list-style: none;
  padding: 0;
  margin: 0 auto 3rem;
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.course-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.6rem 1.35rem;
  background: #0f0f0f;
  border: 1px solid #2a1e1f;
  border-radius: 50px;
  font-size: 0.95rem;
  color: #ccc;
}

.course-stat strong,
.course-stat .course-stat-plus {
  color: #af333d;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Chapter grid (videokurz — Co se naučíte) */
.chapter-groups {
  counter-reset: chapter;
  max-width: 880px;
  margin: 0 auto 3rem;
}

.chapter-group + .chapter-group {
  margin-top: 3rem;
}

.chapter-group-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #af333d;
  margin: 0 0 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.chapter-group-label::before,
.chapter-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a1e1f 50%, transparent);
  max-width: 120px;
}

.chapter-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
}

.chapter-grid .chapter:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.chapter {
  counter-increment: chapter;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  background: #0f0f0f;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.chapter:hover {
  border-color: #3a2528;
  background: #141010;
  transform: translateY(-2px);
}

.chapter::before {
  content: counter(chapter, decimal-leading-zero);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #af333d;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  min-width: 2.1rem;
  line-height: 1;
}

.chapter-title {
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.35;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .chapter-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .chapter-group + .chapter-group {
    margin-top: 2.25rem;
  }

  .section--spacious {
    padding: 4.5rem 0;
  }

  .section-lead {
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
  }
}

/* Header & Navigation
   ========================================================================== */

.site-header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #af333d;
  text-decoration: none;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-logo:hover {
  color: #d4444f;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
}

.nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0f0f0;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
@media (max-width: 767px) {
  .site-logo {
    font-size: 1.75rem;
  }

  .hamburger {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid #222;
    padding: 1rem 1.5rem;
    gap: 0;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Hero
   ========================================================================== */

.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Hero with background photo — Alice visible, text anchored at very bottom */
.hero--photo {
  position: relative;
  background-size: cover;
  background-position: center 20%;
  padding: 0;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0) 40%,
    rgba(10, 10, 10, 0.5) 65%,
    rgba(10, 10, 10, 0.95) 85%,
    rgba(10, 10, 10, 1) 100%
  );
}

.hero--photo .container {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.hero--photo h1 {
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8), 0 0 80px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.3em;
}

.hero--photo .subtitle {
  color: #eee;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}

.hero--photo .btn {
  box-shadow: 0 4px 25px rgba(175, 51, 61, 0.4), 0 0 40px rgba(0, 0, 0, 0.3);
}

/* Hero with subtitle separated below the photo area */
.hero--clean .subtitle {
  display: none;
}

.hero-subtitle-below {
  text-align: center;
  padding: 2rem 0 1rem;
}

.hero-subtitle-below p {
  color: #ccc;
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero portrait — person IS the hero, maximum photo visibility */
.hero--portrait {
  min-height: 95vh;
}

.hero--portrait::before {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0) 50%,
    rgba(10, 10, 10, 0.4) 70%,
    rgba(10, 10, 10, 0.95) 88%,
    rgba(10, 10, 10, 1) 100%
  );
}

.hero--portrait h1 {
  font-size: 3.6rem;
  margin-bottom: 0.3em;
}

.hero--portrait .subtitle {
  max-width: 480px;
}

/* Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: #af333d;
  color: #fff;
  box-shadow: 0 4px 25px rgba(175, 51, 61, 0.4);
}

.btn--primary:hover {
  background: #c94a54;
  color: #fff;
  box-shadow: 0 6px 35px rgba(175, 51, 61, 0.6);
}

.btn--secondary {
  background: transparent;
  color: #d4444f;
  border: 2px solid #af333d;
}

.btn--secondary:hover {
  background: rgba(175, 51, 61, 0.15);
  color: #e8636d;
  border-color: #d4444f;
}

/* Photo Section — full-width image break */
.photo-break {
  width: 100%;
  overflow: hidden;
  max-height: 500px;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-break.photo-break--tall {
  max-height: none;
}

.photo-break--tall img {
  height: auto;
  object-fit: initial;
}

/* Photo pair — two images side by side */
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.photo-pair img {
  border-radius: 12px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .photo-pair {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .photo-pair img {
    height: 240px;
  }
}

/* Photo trio — three portraits side by side */
.photo-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.photo-trio > picture {
  display: block;
  width: 100%;
}

.photo-trio img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

/* Single featured photo */
.photo-feature {
  margin: 2.5rem 0;
  border-radius: 16px;
  overflow: hidden;
}

.photo-feature img {
  width: 100%;
  border-radius: 16px;
}

/* Cards
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 767px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 8px 40px rgba(175, 51, 61, 0.2);
  border-color: #af333d;
}

.card h3 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.card p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card .btn {
  width: 100%;
  text-align: center;
}

/* Card with image */
.card-img {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  margin: -2.5rem -2rem 1.5rem;
  aspect-ratio: 1 / 1;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Social Proof
   ========================================================================== */

.proof-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.proof-item {
  text-align: center;
}

.proof-item .number {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(175, 51, 61, 0.5);
}

.proof-item .label {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.2rem;
}

/* Testimonials
   ========================================================================== */

.testimonial {
  border-left: 3px solid #af333d;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  background: #111;
  border-radius: 0 10px 10px 0;
}

.testimonial blockquote {
  font-style: italic;
  color: #eee;
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #af333d;
  font-size: 0.9rem;
}

/* Large testimonial — featured quote (homepage flagship) */
.testimonial--large {
  max-width: 820px;
  margin: 3rem auto;
  padding: 2.5rem 3rem 2.75rem;
  background: linear-gradient(145deg, #1a1011 0%, #120b0c 100%);
  border: 1px solid #2a1e1f;
  border-left: none;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(175, 51, 61, 0.1);
  text-align: left;
}

.testimonial--large::before {
  content: "\201E";
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  line-height: 0.7;
  color: #af333d;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial--large blockquote {
  font-size: 1.4rem;
  line-height: 1.55;
  color: #f5f5f5;
  font-style: normal;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.testimonial--large cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: #af333d;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* Featured testimonial (videokurz) */
.testimonial-feature {
  max-width: 820px;
  margin: 2rem auto 3rem;
  padding: 2rem 2.75rem 2.5rem;
  background: linear-gradient(145deg, #1a1011 0%, #140d0e 100%);
  border: 1px solid #2a1e1f;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(175, 51, 61, 0.08);
}

.testimonial-feature::before {
  content: "\201E";
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  line-height: 0.7;
  color: #af333d;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-feature blockquote {
  font-size: 1.35rem;
  line-height: 1.55;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
  font-style: normal;
  font-weight: 500;
}

.testimonial-feature cite {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  display: block;
}

.testimonial-feature cite span {
  display: block;
  font-weight: 400;
  color: #af333d;
  font-size: 0.85rem;
  margin-top: 0.15rem;
  letter-spacing: 0.02em;
}

/* Testimonial grid (videokurz) */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #141414;
  border: 1px solid #202020;
  border-radius: 16px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  border-color: #3a2528;
  transform: translateY(-2px);
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.55;
  color: #e8e8e8;
  margin-bottom: 1rem;
  font-style: normal;
}

.testimonial-card blockquote::before {
  content: "\201E";
}

.testimonial-card blockquote::after {
  content: "\201C";
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: #fff;
  font-size: 0.92rem;
  display: block;
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: #af333d;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.testimonial-card--wide {
  grid-column: 1 / -1;
}

@media (max-width: 767px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card--wide {
    grid-column: auto;
  }

  .testimonial-feature {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .testimonial-feature::before {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }

  .testimonial-feature blockquote {
    font-size: 1.1rem;
  }
}

/* Service blocks (konzultace, videokurz)
   ========================================================================== */

.service-block {
  padding: 3rem 0;
  border-bottom: 1px solid #222;
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block h2 {
  color: #fff;
}

.service-block .problem {
  background: #111;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  border: 1px solid #222;
}

.service-block .problem h3 {
  color: #777;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.service-block .solution h3 {
  color: #af333d;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: #ddd;
}

.benefit-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #af333d;
  font-weight: 700;
}

/* Video link
   ========================================================================== */

.video-link {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.video-link:hover .video-play {
  background: #af333d;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
  width: 100%;
  border-radius: 14px;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  padding-left: 4px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Reasons grid (videokurz)
   ========================================================================== */

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 767px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

.reason {
  padding: 1.8rem;
  background: #111;
  border-radius: 10px;
  border: 1px solid #222;
  transition: border-color 0.3s;
}

.reason:hover {
  border-color: #333;
}

.reason h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.reason p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0;
}

/* Pricing Grid
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem auto 1.5rem;
  max-width: 960px;
}

.pricing-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #bbb;
  font-size: 0.95rem;
}

.pricing-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: #333;
  transform: translateY(-2px);
}

.pricing-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #af333d;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}

.pricing-card .duration {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1.2rem;
}

.pricing-card p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.pricing-card--featured {
  border-color: #af333d;
  box-shadow: 0 0 40px rgba(175, 51, 61, 0.25);
  background: #151515;
}

.pricing-card--featured .price {
  color: #fff;
}

.pricing-card--featured:hover {
  border-color: #d4444f;
  box-shadow: 0 0 50px rgba(175, 51, 61, 0.4);
}

/* Intro Call Banner
   ========================================================================== */

.intro-call-banner {
  background: #151515;
  border: 2px solid #af333d;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 0 40px rgba(175, 51, 61, 0.15);
}

.intro-call-banner h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.intro-call-banner p {
  color: #ccc;
  margin-bottom: 1.2rem;
}

.intro-call-banner .btn {
  margin-top: 0.5rem;
}

/* Organic Oval Image
   ========================================================================== */

.img-oval {
  border-radius: 48% 52% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  max-width: 380px;
  margin: 2.5rem auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.img-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog
   ========================================================================== */

.blog-list {
  list-style: none;
  padding: 0;
}

.blog-item {
  padding: 2rem 0;
  border-bottom: 1px solid #222;
}

.blog-item:last-child {
  border-bottom: none;
}

.blog-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.3rem;
}

.blog-meta .category {
  color: #d4444f;
  font-weight: 500;
}

.blog-item h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.blog-item h2 a {
  color: #fff;
  text-decoration: none;
}

.blog-item h2 a:hover {
  color: #d4444f;
}

.blog-item .excerpt {
  color: #bbb;
  font-size: 0.95rem;
}

.blog-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}

.blog-categories a {
  font-size: 0.9rem;
  color: #999;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid #333;
  transition: all 0.2s;
}

.blog-categories a:hover,
.blog-categories a.active {
  color: #fff;
  border-color: #af333d;
  background: rgba(175, 51, 61, 0.15);
}

/* Blog article
   ========================================================================== */

.article-header {
  padding: 3rem 0 1rem;
}

.article-header h1 {
  font-size: 2.2rem;
}

.article-content {
  padding-bottom: 3rem;
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content h2 {
  margin-top: 2rem;
}

.article-content h3 {
  margin-top: 1.5rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.2em;
}

.article-content li {
  margin-bottom: 0.3em;
}

.article-content ol.numbered-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
  counter-reset: numbered-list;
}

.article-content ol.numbered-list > li {
  counter-increment: numbered-list;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1em;
  min-height: 2rem;
}

.article-content ol.numbered-list > li::before {
  content: counter(numbered-list) ".";
  position: absolute;
  left: 0;
  top: -0.1em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #af333d;
  letter-spacing: -0.04em;
  width: 3rem;
  text-align: right;
}

@media (max-width: 768px) {
  .article-content ol.numbered-list > li {
    padding-left: 2.8rem;
  }
  .article-content ol.numbered-list > li::before {
    font-size: 1.2rem;
    width: 2.3rem;
  }
}

.article-back {
  padding: 2rem 0;
  border-top: 1px solid #222;
}

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

.site-footer {
  background: #000;
  color: #888;
  padding: 3rem 0;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.site-footer .container {
  max-width: 960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #d4444f;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: #888;
  text-decoration: none;
  font-weight: 500;
}

.footer-social a:hover {
  color: #fff;
}

/* CTA Section (full-width)
   ========================================================================== */

.cta-section {
  background: #af333d;
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-section .btn {
  background: #fff;
  color: #af333d;
  font-weight: 700;
}

.cta-section .btn:hover {
  background: #f5f5f5;
  color: #af333d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Podmínky / small print */
.conditions {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.conditions h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.conditions ul {
  list-style: none;
  padding: 0;
}

.conditions li {
  padding: 0.3rem 0;
  color: #bbb;
  font-size: 0.9rem;
}

/* Two-column layout (text + image) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split-img {
  border-radius: 16px;
  overflow: hidden;
}

.split-img img {
  width: 100%;
  border-radius: 16px;
}

.split-img--square {
  aspect-ratio: 1 / 1;
}

.split-img--square img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split--reverse {
    direction: ltr;
  }
}

/* Highlight strip — brand accent divider */
.accent-strip {
  height: 4px;
  background: linear-gradient(90deg, transparent, #af333d, transparent);
  border: none;
  margin: 0;
}

/* Credential badges — media logos, achievements */
.credential-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.credential-bar span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.credential-bar span:hover {
  color: #888;
}

/* Media bar — prominent "Viděli jste mě v médiích" */
.media-bar-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #af333d;
  margin: 0 0 2rem;
}

.media-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.media-bar img {
  height: 26px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.25s;
}

.media-bar img:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .media-bar {
    gap: 1rem 1.25rem;
  }

  .media-bar img {
    height: 22px;
    max-width: 110px;
  }
}

/* Utility
   ========================================================================== */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Email sample — renders Markdown blockquote blocks in blog articles
   ========================================================================== */

.email-sample {
  margin: 2.5rem 0;
  padding: 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(175, 51, 61, 0.25);
  border-left: 3px solid #af333d;
  border-radius: 14px;
  position: relative;
}

.email-sample::before {
  content: "✉  Ukázka e-mailu";
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e8636d;
  margin-bottom: 1.25rem;
}

.email-sample p,
.email-sample ul,
.email-sample li {
  color: #ddd;
}

.email-sample p {
  margin: 0.75rem 0;
}

.email-sample ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
  padding: 0;
}

.email-sample li {
  margin: 0.25rem 0;
  list-style: disc;
}

/* Pull quote — decorative book/article citation
   Triggered by Markdown `>> ` syntax in source .md.
   ========================================================================== */

.pull-quote {
  margin: 3rem auto;
  padding: 0.5rem 1.5rem 1rem;
  max-width: 600px;
  text-align: center;
  position: relative;
  border: none;
  background: transparent;
}

.pull-quote::before {
  content: "“";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.5rem;
  line-height: 0.85;
  color: #af333d;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

.pull-quote p {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #f0f0f0;
  letter-spacing: -0.015em;
  margin: 0;
}

.pull-quote p + p {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .pull-quote {
    padding: 0.25rem 0.5rem 0.75rem;
  }
  .pull-quote::before {
    font-size: 4rem;
  }
  .pull-quote p {
    font-size: 1.2rem;
  }
}

/* Year tag (appears next to section h2 like "Audioturistka 2025")
   ========================================================================== */

.year-tag {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.15em 0.7em;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #e8636d;
  background: rgba(175, 51, 61, 0.12);
  border: 1px solid rgba(175, 51, 61, 0.35);
  border-radius: 999px;
  vertical-align: middle;
  transform: translateY(-0.2em);
  white-space: nowrap;
}

/* Media list
   ========================================================================== */

.media-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.media-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #222;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.media-list li:last-child {
  border-bottom: none;
}

.media-list li strong {
  color: #f0f0f0;
  display: inline-block;
  min-width: 150px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .media-list li strong {
    display: block;
    min-width: 0;
    margin-bottom: 0.2rem;
    color: #af333d;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

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

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero--photo {
    min-height: 55vh;
  }

  .hero--portrait {
    min-height: 75vh;
  }

  .hero--portrait h1 {
    font-size: 2.4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .proof-bar {
    gap: 1.5rem;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }

  .testimonial--large {
    padding: 1.75rem 1.5rem 2rem;
  }

  .testimonial--large::before {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }

  .testimonial--large blockquote {
    font-size: 1.15rem;
  }

  .intro-call-banner {
    padding: 1.5rem;
  }

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

  .photo-break {
    max-height: 300px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    font-size: 2.6rem;
  }
}
