/* ============================================================
   RADIO ALPINE — Hero section
   assets/css/hero.css
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.8) 75%, var(--midnight) 100%),
    url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1600&q=80') center/cover no-repeat;
}

/* Remplacer l'URL ci-dessus par le chemin vers votre image WordPress :
   url('<?php echo get_template_directory_uri(); ?>/assets/images/hero-mountain.jpg')
*/

.hero-mountain-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--midnight), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--glacier);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-title span { color: var(--glacier); }

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--ice);
  margin-top: 1rem;
  opacity: 0.9;
}

/* ── Flocons décoratifs ── */
.snow-deco {
  position: absolute;
  color: rgba(240, 244, 248, 0.25);
  animation: fall linear infinite;
  pointer-events: none;
}

@keyframes fall {
  0%   { transform: translateY(-10px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
