/* ==== SPOLEČNÉ NASTAVENÍ PRO VŠECHNY BANNERY ==== */
.hero,
.hero-season {
  position:relative;
  min-height:320px;        /* desktop výška */
  margin:0 0 40px;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  align-items:center;
  color:#fff;
  isolation:isolate;
}

@media (max-width:768px){
  .hero,
  .hero-season {
    min-height:260px;      /* mobilní výška */
  }
}

.hero:hover .hero-bg,
.hero-season:hover .hero-season-bg {
  transform: scale(1.05);
}

/* ==== PŮVODNÍ HERO BANNER – VIDEO S FALLBACK OBRÁZKEM ==== */
.hero-bg {
  position:absolute;
  inset:0;
  overflow:hidden;
  background:url("https://www.snowlab.cz/user/documents/upload/2025-2026/csm_Skiservice-Maschine-CRYSTAL-MAGIC_2a1ce9af62.jpg") no-repeat center center;
  background-size:cover;
  transition: transform .8s ease;
  will-change: transform;
}

.hero-bg video {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45));
  z-index:1;
}

.hero-content {
  position:relative;
  z-index:2;
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:40px;
  display:flex;
  gap:60px;
  justify-content:flex-end;
  align-items:center;
}

.hero-title {
  flex:1;
  margin:0;
  color:#fff;
  line-height:1.2;
  font-weight:700;
  font-size:32px;
  max-width:40%;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Vylepšený červený box */
.hero-box {
  background: linear-gradient(145deg, #e00000, #b80000);
  border-radius:20px;
  padding:28px 32px;
  max-width:520px;
  margin-right:40px;
  color:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}

.hero-box p {
  line-height:1.5;
  margin:0 0 12px;
}
.hero-box p:last-child { margin-bottom:0; }

/* Mobilní verze původního banneru */
@media (max-width:989px){
  .hero-content {
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
    padding:20px !important;
    gap:32px !important;
  }
  .hero-title {
    max-width:100% !important;
    font-size:26px !important;
    margin:0 !important;
  }
  .hero-box {
    max-width:100% !important;
    margin:0 !important;
    padding:18px !important;
  }
}

/* ==== SEZÓNNÍ HERO BANNER – FOTO (NOVÉ POZADÍ .png + overlay vlevo) ==== */
.hero-season-bg {
  position:absolute;
  inset:0;
  background: 
    linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,0) 70%),
    url("https://www.snowlab.cz/user/documents/upload/2025-2026/IMG_2879-2.png") no-repeat top center;
  background-size:cover;
  transition: transform .8s ease;
  will-change: transform;
}

.hero-season-content {
  position:relative;
  z-index:2;
  width:33%;              /* levá třetina */
  padding:40px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  gap:20px;
  margin-left:5%;          /* odsazení od kraje */
}

.hero-season-title {
  margin:0;
  font-weight:800;
  font-size:36px;
  line-height:1.2;
  text-transform:uppercase;
}

.hero-season-sub {
  font-size:22px;
  font-weight:600;
  background:rgba(255,255,255,0.15);
  padding:12px 20px;
  border-radius:12px;
  display:inline-block;
}

.hero-season-bonus {
  font-size:20px;
  font-weight:700;
  color:#ffe600; /* žlutý akcent */
  margin-top:10px;
}

/* Na mobilech centrovat texty */
@media (max-width:768px){
  .hero-season-content {
    width:100%;
    margin-left:0;
    align-items:center;
    text-align:center;
  }
}
  .hero-season-title {
    font-size:24px;
  }
  .hero-season-sub {
    font-size:18px;
    padding:10px 16px;
  }
  .hero-season-bonus {
    font-size:18px;
    text-align:center;
  }
}
