/* ── Carousel ──────────────────────────────────────────── */
#hero-carousel-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 550px;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.carousel-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  z-index: 0;
  /* Only fade IN — outgoing handled by JS delay */
  transition: opacity 2s ease-in;
}
.carousel-slide::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.68);
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.carousel-slide.outgoing {
  opacity: 1;
  z-index: 0;
  transition: none;
}

/* ── Text overlay ─────────────────────────────────────── */
.hero-text {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  /* Shift everything up */
  margin-top: -10vh;
}

/* ── Big title: Ukrainian flag gradient (blue top, gold bottom) ── */
.hero-title {
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.03em;
  /* Flag gradient: blue top half → gold bottom half */
  background: linear-gradient(
    to bottom,
    #005BBB 0%,
    #005BBB 48%,
    #FFD500 52%,
    #FFD500 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* fallback for browsers without gradient text */
  color: #FFD500;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

/* ── Subtitle: white, smaller ─────────────────────────── */
.hero-subtitle {
  font-size: clamp(1rem, 2.8vw, 1.8rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin: 1rem 0 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* ── Tagline: spaced uppercase ────────────────────────── */
.hero-tagline {
  font-size: clamp(0.8rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  margin: 1.5rem 0 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ── Content below (minimal) ──────────────────────────── */

.hero-caption-bar {
  position: absolute;
  bottom: 15%; left: 0; right: 0;
  z-index: 20;
  text-align: center;
  padding: 2rem 2rem 2rem;
  background: none;
}
.hero-caption {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 50rem;
  margin: 0 auto;
  font-style: italic;
  letter-spacing: 0.01em;
  transition: opacity 0.8s ease;
}

.home-content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
  #hero-carousel-wrapper { min-height: 450px; height: 80vh; }
}
