/**
 * ABOUT HERO SECTION - HARE EQUIPMENT
 * Hero section for about page
 */

/* ================================================
   ABOUT HERO
   ================================================ */

.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images_hare/about.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(193, 104, 55, 0.75) 100%);
  z-index: 1;
}

.about-hero-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--spacing-24) var(--spacing-6);
  position: relative;
  z-index: 2;
}

.about-hero-content {
  text-align: center;
  color: #ffffff;
}

/* Badge */
.about-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: var(--spacing-2) var(--spacing-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--spacing-6);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Title */
.about-hero-title {
  font-family: var(--font-family-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--spacing-6) 0;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.about-hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
  .about-hero {
    min-height: 400px;
    background-attachment: scroll;
  }

  .about-hero-container {
    padding: var(--spacing-16) var(--spacing-6);
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: var(--font-size-lg);
  }
}

/* Animación de entrada */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-content {
  animation: fadeInDown 0.8s ease-out;
}
