/* ─── Hero ──────────────────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 90vh;
  background-image: url("/static/images/salsa-dancing.jpg");
  background-size: cover;
  background-position: center 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 2rem 1rem;
}
.home-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.home-hero__title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.home-hero__title span { color: #6ee7b7; }
.home-hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Stat bar ──────────────────────────────────────────────────────────── */
.home-stats {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: #fff;
}
.home-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #6ee7b7;
  line-height: 1;
}

/* ─── Section labels ─────────────────────────────────────────────────────── */
.home-section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
}

/* ─── Why cards ─────────────────────────────────────────────────────────── */
.home-why-card {
  border: none;
  border-radius: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09) !important;
}
.home-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ─── Steps ─────────────────────────────────────────────────────────────── */
.home-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d1fae5;
  color: #065f46;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Event cards ────────────────────────────────────────────────────────── */
.home-event-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12) !important;
}
.home-event-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.home-cta__lead { max-width: 500px; margin-left: auto; margin-right: auto; }

.home-cta {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  border-radius: 1.5rem;
  color: #fff;
  padding: 4rem 2rem;
}

/* ─── Spacing ────────────────────────────────────────────────────────────── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
