/*
 * SORKISTx Block — hero-fullscreen
 */

.hero-fullscreen {
  position:   relative;
  display:    flex;
  align-items:center;
  justify-content: center;
  overflow:   hidden;
  color:      #fff;
  /* min-height set inline from config */
}

/* Background video */
.hero-fullscreen__video {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  z-index:    0;
}

/* Overlay */
.hero-fullscreen__overlay {
  position: absolute;
  inset:    0;
  z-index:  1;
}

/* Content */
.hero-fullscreen__content {
  position:    relative;
  z-index:     2;
  width:       100%;
  padding-block: var(--space-24);
}

.hero-fullscreen__inner {
  max-width: 800px;
}

.hero-fullscreen__inner.text-center {
  margin-inline: auto;
  text-align:    center;
}

.hero-fullscreen__inner.text-start {
  text-align: start;
}

.hero-fullscreen__breadcrumb {
  font-size:      var(--font-size-sm);
  font-weight:    600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity:        0.75;
  margin-block-end: var(--space-4);
}

.hero-fullscreen__title {
  font-size:   clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color:       #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  margin-block-end: var(--space-5);
  letter-spacing: -0.02em;
}

.hero-fullscreen__sub {
  font-size:   clamp(var(--font-size-base), 2.5vw, var(--font-size-xl));
  opacity:     0.9;
  line-height: 1.6;
  margin-block-end: var(--space-8);
  max-width:   550px;
  color:       rgba(255,255,255,0.9);
}

.hero-fullscreen__inner.text-center .hero-fullscreen__sub {
  margin-inline: auto;
}

.hero-fullscreen__actions {
  display:   flex;
  gap:       var(--space-4);
  flex-wrap: wrap;
}

.hero-fullscreen__inner.text-center .hero-fullscreen__actions {
  justify-content: center;
}

/* ─── Scroll indicator ───────────────────────────────────────────────────────── */

.hero-scroll-indicator {
  position:  absolute;
  inset-block-end: var(--space-8);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index:   2;
}

.hero-scroll-indicator__dot {
  display:       block;
  width:         28px;
  height:        44px;
  border:        2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  position:      relative;
}

.hero-scroll-indicator__dot::after {
  content:   '';
  position:  absolute;
  inset-block-start: 6px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width:     4px;
  height:    8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scroll-dot 1.5s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero-fullscreen__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-fullscreen__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
