/* ===================================================================
   hero.css — home page hero banner + snow transition
   Includes its own responsive (mobile) rules.
   Shared variables/reset live in global.css
   =================================================================== */

/* ── HERO ── */
.hero {
  position: relative;
  height: 41.66vw;
  min-height: 560px;
  background: url('ASC Silver Landscape Small.jpg') center/contain no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-snowflakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-snowflakes::before,
.hero-snowflakes::after {
  content: '❄';
  position: absolute;
  font-size: 180px;
  opacity: 0.04;
  color: white;
}
.hero-snowflakes::before { top: -30px; right: 10%; }
.hero-snowflakes::after { bottom: 60px; left: 5%; font-size: 120px; }

/* Glow: orange warm accent */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,154,77,0.14) 0%, transparent 70%);
  top: -100px;
  right: 15%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 40px;
  width: 100%;
  text-align: center;
}
.hero-content .hero-badge { display: none; }

/* Badge: orange accent */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,154,77,0.15);
  border: 1px solid rgba(245,154,77,0.45);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.hero-badge::before { content: '★'; font-size: 0.7rem; }

/* Hero title: Montserrat Bold, ALL CAPS */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-title span { color: var(--orange); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 14px;
  border-radius: 4px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* CTA: orange */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.hero-cta:hover { background: #f7aa6a; transform: translateY(-2px); }

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

/* ── SNOW TRANSITION ── */
.snow-transition {
  display: block;
  width: 100%;
  height: 70px;
  background: url('3 Snowflakes souble spread.png') center/180px auto no-repeat;
  margin-top: 15px;
  position: relative;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { background: url('ASC Silver.jpg') center top/100% auto no-repeat; height: 146.43vw; min-height: 0; overflow: hidden; }
  .hero-content { padding: 0 24px calc(13% - 40px) !important; max-width: 100%; }
  .hero-title   { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-desc    { font-size: 0.95rem; }
  .snow-transition {
    height: 16.66vw;
    background-size: 50% auto;
  }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 18px 40px; }
  .hero-cta  { font-size: 0.78rem; padding: 12px 20px; }
  .hero-meta  { display: none; }
  .hero-badge { display: none; }
  .hero-title { display: none; }
  .hero-desc  { display: none; }
}
