/* ================================================================
   FILE PATH: public/css/Hero.css
   Brescon Family Office — Hero / Home Section
   Dark navy gradient (glass outline tones) + Brescon blue #5BA3C9
================================================================ */

#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #1A2B38 0%, #1E3347 35%, #244E6E 70%, #2E6F96 100%);
  overflow: hidden;
  padding: 130px 0 100px;
}

#home::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(214,234,243,.12) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none; z-index: 0;
}

#home::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 5% 15%,  rgba(91,163,201,.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 95% 85%, rgba(91,163,201,.12) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.hero-bottom-border {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #5BA3C9, transparent);
  z-index: 2;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: #C8E4F0;
  margin-bottom: 1.75rem; padding: 7px 18px;
  border: 1px solid rgba(200,228,240,.30); border-radius: 100px;
  background: rgba(200,228,240,.08);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #80BCE0; display: inline-block;
  animation: heroPulse 2s ease infinite;
}
@keyframes heroPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero-tagline {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: 2px; color: rgba(200,228,240,.60);
  font-style: italic; margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; color: #FFFFFF;
  line-height: 1.2; margin-bottom: 1.5rem;
}
.hero-title .highlight { color: #80BCE0; display: block; }

.hero-description {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(200,228,240,.85);
  max-width: 580px; margin-bottom: 2.5rem; line-height: 1.9;
}

.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-stat .stat-number {
  display: block; font-family: var(--font-heading);
  font-size: 2.1rem; font-weight: 700; color: #80BCE0; line-height: 1;
}
.hero-stat .stat-label {
  font-size: .72rem; color: rgba(200,228,240,.62);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 5px; display: block;
}
.hero-stat-divider { width: 1px; background: rgba(200,228,240,.20); align-self: stretch; }

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,228,240,.18);
  border-radius: var(--r-lg);
  padding: 2.25rem; color: var(--white); position: relative;
}
.hero-card-icon { font-size: 2.75rem; color: #80BCE0; margin-bottom: 1rem; }
.hero-card h3 { color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: .5rem; }
.hero-card p  { color: rgba(200,228,240,.80); font-size: .95rem; margin: 0; line-height: 1.7; }
.hero-card-divider { border: none; border-top: 1px solid rgba(200,228,240,.15); margin: 1.5rem 0; }

.hero-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.hero-feature-item { display: flex; align-items: center; gap: 8px; color: rgba(200,228,240,.82); font-size: .88rem; }
.hero-feature-item i { color: #80BCE0; font-size: 1rem; flex-shrink: 0; }

.hero-badge {
  position: absolute; font-weight: 700; font-size: .78rem;
  padding: 6px 15px; border-radius: 100px; white-space: nowrap; letter-spacing: .3px;
}
.hero-badge.badge-top { top: -13px; right: -8px; background: var(--blue); color: #fff; box-shadow: 0 3px 14px rgba(91,163,201,.35); }
.hero-badge.badge-btm { bottom: -13px; left: -8px; background: rgba(255,255,255,.10); color: #C8E4F0; border: 1px solid rgba(200,228,240,.25); backdrop-filter: blur(8px); }

.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 6px; color: rgba(200,228,240,.45); font-size: .70rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: color var(--t-fast);
}
.scroll-indicator:hover { color: #80BCE0; }
.scroll-indicator .arrow-icon {
  width: 18px; height: 18px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); animation: bounceDown 1.6s infinite;
}
@keyframes bounceDown {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

@media (max-width: 991px) {
  .hero-visual { margin-top: 3rem; }
  .hero-stats   { gap: 1.5rem; }
}
@media (max-width: 767px) {
  #home { padding: 110px 0 70px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn-primary-custom,
  .hero-cta-group .btn-outline-white { width: 100%; justify-content: center; }
  .scroll-indicator { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-badge { display: none; }
  .hero-stat .stat-number { font-size: 1.8rem; }
}
