    /* HERO */

    .hero {
      max-width: 1100px;
      margin: 0 auto;
      padding: 18px 16px 32px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .hero-text h1 {
      font-size: 26px;
      margin-bottom: 10px;
    }

    .hero-text p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 18px;
    }

.hero-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.hero-tags .tag i {
  margin-right: 0.4rem;
  font-size: 0.95em;
}

/* špeciálne pre odkaz – klikateľný tag */
.hero-tags a.tag {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-tags a.tag:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}


    .hero-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn {
      border: none;
      cursor: pointer;
      font-weight: 600;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--primary);
      box-shadow: var(--shadow);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
    }

    .btn-ghost {
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(0,0,0,0.06);
    }

    .hero-photo {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .hero-photo img {
      height: 220px;
      width:  100%;
      object-fit: cover;
    }
    .hero-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;      /* všetko v jednom riadku */
}

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

.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;  /* vycentruje obsah vo flexe */
  gap: 0.75rem;
  white-space: nowrap;
  margin: 0 auto;
}

.hero-logo {
  height: 48px;
  width: auto;
  display: inline-block;
}

.hero-title-part {
  display: inline-block;
}
@media (max-width: 1100px) {
  .hero-title {
    white-space: normal;
    flex-wrap: wrap;
  }
}

.hero-tags .tag.tag-voucher {
  background: #efd0d0 !important;   /* jemná, ale tmavšia staroružová */
  color: #5a2a2a !important;        /* hlbšia hnedo-ružová */
  border: 1px solid #e2b8b8 !important;
  font-weight: 600;
}

.hero-tags .tag.tag-voucher i {
  color: #5a2a2a !important;
}
.hero-tags .tag {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}





.hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  white-space: nowrap;
  margin: 0 auto;

  /* font z Google – Cookie */
  font-family: "Cookie", cursive;
  font-weight: 400;
  font-size: 2.4rem;      /* doladíš podľa oka */
}

.hero-title-part {
  display: inline-block;
}

.hero-logo {
  height: 52px;           /* prípadne 48 / 56 podľa toho, ako sedí */
  width: auto;
  display: inline-block;
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
    white-space: normal;
    flex-wrap: wrap;
  }
}





