/* ===== WRAPPER ===== */
.hero-banner-unique {
  display: flex;
  width: 100vw;
  max-width: 100vw;

  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  padding: 0;
}

/* ===== 50/50 SLOUPCE ===== */
.hero-banner-image,
.hero-banner-content {
  flex: 0 0 50%;
  max-width: 50%;
  box-sizing: border-box;
}

/* ===== OBRÁZEK ===== */
.hero-banner-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

/* ===== PRAVÁ STRANA ===== */
.hero-banner-content {
  background: #f2edec;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  text-align: left;
}

/* TEXT BLOK */
.hero-banner-inner {
  text-align: left;
  font-family: 'Work Sans', sans-serif;
}

/* NADPIS */
.hero-banner-inner h2 {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 300;
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 40px 0;
  color: #343434;
}

/* TLAČÍTKO */
.shop-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #343434;
  border: 2px solid #343434;
  background: transparent;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-family: 'Work Sans', sans-serif;
}

.shop-button:hover {
  background: #343434;
  color: #fff;
}

/* ===== MOBIL / TABLET ===== */
@media (max-width: 960px) {
  .hero-banner-unique {
    flex-direction: column;
  }

  .hero-banner-image,
  .hero-banner-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-banner-image img {
    height: auto;
  }

  .hero-banner-content {
    padding: 40px 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-banner-inner {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }

  .hero-banner-inner h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 30px;
  }

  .shop-button {
    display: inline-block;
    margin: 0 auto;
  }
}