/* ==========================================================================
   Accessible Paris — Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 40%, var(--color-navy-light) 100%);
  z-index: 1;
}

/* Decorative Eiffel Tower silhouette pattern */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.95), transparent);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* Art deco geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(201, 169, 110, 0.5) 40px,
      rgba(201, 169, 110, 0.5) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(201, 169, 110, 0.5) 40px,
      rgba(201, 169, 110, 0.5) 41px
    );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: var(--space-16) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: var(--tracking-tight);
}

.hero h1 .gold-text {
  color: var(--color-gold);
  display: block;
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero .btn-gold {
  font-size: var(--text-md);
  padding: var(--space-4) var(--space-8);
}

.hero .btn-outline {
  font-size: var(--text-md);
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* ── Hero Stats Bar ── */
.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-1);
}

/* ── Decorative floating elements ── */
.hero-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-1 {
  top: 15%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
}

.hero-deco-2 {
  bottom: 20%;
  right: 25%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
}

.hero-deco-3 {
  top: 40%;
  right: 5%;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── Animation (respects reduced motion) ── */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-eyebrow {
  animation: hero-fade-up 0.8s ease-out 0.2s both;
}

.hero h1 {
  animation: hero-fade-up 0.8s ease-out 0.4s both;
}

.hero-description {
  animation: hero-fade-up 0.8s ease-out 0.6s both;
}

.hero-actions {
  animation: hero-fade-up 0.8s ease-out 0.8s both;
}

.hero-stats {
  animation: hero-fade-in 1s ease-out 1s both;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-6);
  }

  .hero-deco {
    display: none;
  }
}
