.hero-section {
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background-image: url('https://images.unsplash.com/photo-1470813740244-df37b8c1edcb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6), rgba(0,0,0,0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ef4444, #a855f7, #d8b4fe);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-divider {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, #ef4444, #a855f7);
  margin: 0 auto 2rem;
  border-radius: 9999px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-btn {
  background: linear-gradient(to right, #dc2626, #991b1b);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.3s;
}

.hero-btn:hover {
  background: linear-gradient(to right, #b91c1c, #7f1d1d);
}

.hero-flourish {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: linear-gradient(to right, rgba(153, 27, 27, 0.3), rgba(88, 28, 135, 0.3), rgba(153, 27, 27, 0.3));
  z-index: 5;
}
