/* ═══════════════════════════════════════════════════════════ */
/* FILE: sections/hero.css                                    */
/* JURI PROJE — Interior Architecture                          */
/* Full-bleed hero — moody interior, left-aligned headline    */
/* ═══════════════════════════════════════════════════════════ */

.hero {
  height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1714 0%, #2d2420 40%, #1e1b18 70%, #141210 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle architectural grid overlay on hero */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(100% / 12 - 1px),
      rgba(160, 152, 144, 0.04) calc(100% / 12 - 1px),
      rgba(160, 152, 144, 0.04) calc(100% / 12)
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-7);
}

.hero-text {
  max-width: 60%;
}

.hero-overline {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-3);
}

.hero-headline {
  color: var(--color-text-inverse);
  font-size: clamp(64px, 10vw, 120px);
  margin-bottom: var(--space-4);
}

.hero-mission {
  color: rgba(232, 228, 221, 0.6);
  max-width: 420px;
  margin-bottom: var(--space-5);
}

.hero-cta {
  border-color: var(--color-text-inverse);
  color: var(--color-text-inverse);
}

.hero-cta:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ─── Scroll Indicator ─────────────────────────────────────── */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-4);
  right: var(--grid-margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(232, 228, 221, 0.4);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: currentColor;
  animation: scrollLineExtend 2s linear infinite;
}

/* ─── Mobile Hero ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-text {
    max-width: 100%;
  }

  .hero-content {
    padding-bottom: var(--space-6);
  }

  .hero-scroll-indicator {
    display: none;
  }
}
