/*
 * hero.css — Hero Section
 * Fotogruppe elektron Lübbenau Child Theme
 */

.fge-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.fge-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 0.1s linear;
}
.fge-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,45,100,0.72) 0%, rgba(26,95,168,0.62) 50%, rgba(91,155,213,0.45) 100%);
}
.fge-hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.12) 80%, rgba(255,255,255,0.85) 100%);
}
.fge-hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 5%; max-width: 900px;
}
.fge-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: 0.7rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 24px;
  opacity: 0; animation: fgeSlideUp 1s 0.3s forwards;
}
.fge-hero-eyebrow .fge-dot {
  width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.7);
}
.fge-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8.5vw, 6.5rem); font-weight: 900; line-height: 1.02; color: #fff;
  margin-bottom: 22px; opacity: 0; animation: fgeSlideUp 1s 0.5s forwards;
  text-shadow: 0 4px 32px rgba(10,40,90,0.35);
}
.fge-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #fff 0%, #b8d9f5 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fge-hero-desc {
  font-size: clamp(1rem,1.8vw,1.15rem); color: rgba(255,255,255,0.82);
  max-width: 560px; margin: 0 auto 40px;
  opacity: 0; animation: fgeSlideUp 1s 0.7s forwards;
}
.fge-hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fgeSlideUp 1s 0.9s forwards;
}
.fge-hero-actions .btn-outline {
  color: #fff; border-color: rgba(255,255,255,0.6);
}
.fge-hero-actions .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ---- Stats Bar ---- */
.fge-hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-white);
  opacity: 0; animation: fgeFadeIn 1s 1.2s forwards;
}
.fge-hero-stat {
  padding: 20px 52px; border-right: 1px solid var(--border-white); text-align: center;
}
.fge-hero-stat:last-child { border-right: none; }
.fge-hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 1.9rem;
  font-weight: 700; color: var(--accent); line-height: 1; display: block;
}
.fge-hero-stat-label {
  font-family: 'Space Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; display: block;
}

/* ---- Scroll Indicator ---- */
.fge-hero-scroll {
  position: absolute; bottom: 76px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: 'Space Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.6); text-transform: uppercase;
  animation: fgeFadeIn 1s 1.5s both;
}
.fge-hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: fgeScrollPulse 2s infinite;
}
