/* ============================================================
   MANTOLA OF MOTORS — HERO SECTION
   Gradient Blue Luxury Hero | hero.css
   ============================================================ */

/* ── Hero Container ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b2f52 0%, #0f5fa8 40%, #58b7ff 100%);
}

/* ── Abstract Background Shapes ──────────────────────────── */
.hero-shapes { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #58b7ff 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: floatShape1 12s ease-in-out infinite;
}
.hero-shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #0f5fa8 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: 0.5;
  animation: floatShape2 15s ease-in-out infinite;
}
.hero-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #dff4ff 0%, transparent 70%);
  top: 50%; left: 30%;
  opacity: 0.15;
  animation: floatShape3 10s ease-in-out infinite;
}

/* Decorative thin lines */
.hero-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-line {
  position: absolute;
  background: rgba(255,255,255,0.04);
  transform-origin: center;
}
.hero-line-1 { width: 1px; height: 60%; top: 20%; left: 18%; animation: linePulse 6s ease-in-out infinite; }
.hero-line-2 { width: 1px; height: 40%; top: 30%; right: 22%; animation: linePulse 8s ease-in-out infinite 1s; }
.hero-line-3 { width: 60%; height: 1px; top: 25%; left: 20%; animation: linePulse 10s ease-in-out infinite 2s; }

@keyframes floatShape1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 40px) scale(1.05); } }
@keyframes floatShape2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.08); } }
@keyframes floatShape3 { 0%,100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.15); } }
@keyframes linePulse    { 0%,100% { opacity: 0.04; } 50% { opacity: 0.12; } }

/* ── Hero Overlay (subtle vignette) ─────────────────────── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(11,47,82,0.55) 100%);
}

/* ── Hero Content ─────────────────────────────────────────── */
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  width: 100%; max-width: 1000px;
  padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

/* ── Hero Label ───────────────────────────────────────────── */
.hero-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(223,244,255,0.75);
  margin-bottom: 24px;
  display: block;
  opacity: 0;
  transform: translateY(24px);
}

/* ── Hero Title — (MOM) ───────────────────────────────────── */
.hero-title {
  font-family: var(--font-body);
  color: #ffffff;
  line-height: 1;
  letter-spacing: 10px;
  margin: 0;
  font-weight: 300;
  text-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

/* Desktop */
.hero-title { font-size: 150px; }

/* ── Brand name below title ───────────────────────────────── */
.hero-brand-name {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
}

/* ── Hero Subtitle/Tagline ────────────────────────────────── */
.hero-subtitle {
  margin-top: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  letter-spacing: 1px;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
}

/* ── Scroll Indicator ─────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
}
.scroll-indicator > span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-family: var(--font-body); font-weight: 500;
}
.scroll-line { width: 1px; height: 52px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(88,183,255,0.9), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ── Entrance Animations ──────────────────────────────────── */
.hero-label.animate    { animation: heroUp 1.0s cubic-bezier(0.16,1,0.3,1) 0.5s forwards; }
.title-line.animate    { animation: heroUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.7s forwards; }
.hero-brand-name.animate { animation: heroUp 1.0s cubic-bezier(0.16,1,0.3,1) 0.9s forwards; }
.hero-subtitle.animate { animation: heroUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.1s forwards; }
.scroll-indicator.animate { animation: heroFade 0.8s ease 1.5s forwards; }

@keyframes heroUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 100px; letter-spacing: 6px; }
  .hero-brand-name { font-size: 24px; letter-spacing: 3px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 72px; letter-spacing: 4px; }
  .hero-brand-name { font-size: 18px; letter-spacing: 2px; }
  .hero-subtitle { font-size: 14px; }
  .hero-content { padding: 0 24px; }
  .hero-shape-1 { width: 400px; height: 400px; }
  .hero-shape-2 { width: 300px; height: 300px; }
}
