/* Základní styly */
body {
    background-color: #000;
    color: #00fa00;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    margin: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo-small {
    height: 40px;
  }

  .logo-medium {
    height: 15rem;
  }

  header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0;
  }
  
  header nav a {
    color: #00fa00;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2rem;
  }
  
  footer {
    background-color: #424040;
    color: white;
    text-align: center;
    padding: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
  }
  
  /* Hero sekce */
  .hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-logo {
    max-width: 40vw;
    height: auto;
  }
  
  .hero .podnadpis {
    font-size: 1.5rem;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    background-color: white;
    padding: 0.5rem 1rem;
    box-shadow: 4px 4px 0 #00fa00;
  }
  
  /* Sekce O podcastu a O nás */
  .o-podcastu,
  .o-nas {
    background-color: #000;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .o-podcastu .container,
  .o-nas .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .o-podcastu h2,
  .o-nas h1,
  .o-nas h2 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  
  .o-podcastu p {
    color: #00fa00;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
  }
  
  .o-nas p {
    color: #d2fba4;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
  }
  
  .o-nas a {
    color: #f50ca0;
    text-decoration: underline;
  }
  
  .o-nas .autorky {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
  }
  
  .o-nas .autorky img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 2rem;
  }
  
  /* CTA Sponzoři */
  .cta-sponzori {
    background-color: #000;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .cta-sponzori .tlacitko {
    display: inline-block;
    background-color: #f7c500;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2rem;
    border: 2px solid #000;
  }
  
  .cta-sponzori .tlacitko:hover {
    background-color: #ffeda7;
  }
  
  /* Loga partnerů */
  .autorky img {
    transition: filter 0.3s ease-in-out;
    filter: grayscale(100%);
  }
  
  .autorky img:hover {
    filter: grayscale(0%);
  }
  
  .autorky img::after {
    content: attr(alt);
    display: block;
    font-size: 1rem;
    color: #f7c500;
    margin-top: 0.5rem;
  }
  
  /* Responsivita */
  @media (max-width: 768px) {
    .hero-logo {
      max-width: 60vw;
    }
  
    header nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    header nav a {
      font-size: 1rem;
    }
  
    .o-nas .autorky {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  }
  
  /* Barlow Condensed třídy */
  .barlow-condensed-thin {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .barlow-condensed-extralight {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .barlow-condensed-light {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .barlow-condensed-regular {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .barlow-condensed-medium {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .barlow-condensed-semibold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .barlow-condensed-bold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .barlow-condensed-extrabold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .barlow-condensed-black {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .barlow-condensed-thin-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .barlow-condensed-extralight-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .barlow-condensed-light-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .barlow-condensed-regular-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .barlow-condensed-medium-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .barlow-condensed-semibold-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .barlow-condensed-bold-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .barlow-condensed-extrabold-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .barlow-condensed-black-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  