/* =========================================================
   index2.html — strip s černobílou fotkou hradu Cimburk
   mezi eyebrow a hlavním titulkem v hero sekci.
   Vše ostatní řeší assets/style.css.
   ========================================================= */

.hero-cimburk {
  /* Full-bleed pruh napříč celou šířkou viewportu, i když je
     uvnitř .container. Možné díky overflow:hidden na .hero. */
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-block: 18px 24px;
  height: clamp(120px, 18vh, 200px);
  overflow: hidden;
}

.hero-cimburk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: grayscale(100%) contrast(1.05);
  display: block;
}

/* Plynulé rozplynutí horního a spodního okraje stripu do tmavého
   hero pozadí — strip se "vznáší", místo aby měl ostré řezy. */
.hero-cimburk::before,
.hero-cimburk::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
  z-index: 1;
}
.hero-cimburk::before {
  top: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0.55) 0%, transparent 100%);
}
.hero-cimburk::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(12, 12, 15, 0.65) 0%, transparent 100%);
}

.hero-cimburk-credit {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(244, 236, 220, 0.65);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.hero-cimburk-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(244, 236, 220, 0.35);
  text-underline-offset: 2px;
}
.hero-cimburk-credit a:hover {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

@media (max-width: 640px) {
  .hero-cimburk { margin-block: 24px 32px; }
  .hero-cimburk-credit { font-size: 0.62rem; right: 8px; bottom: 6px; }
}
