.parallax {
  background-image: url("../images/hero-bg.jpg");
  height: 420px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 37, 133, 0.35);
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  max-width: 500px;
}

.parallax-head-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

.parallax-sub-text {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.parallax-button {
  display: inline-block;
  background-color: #F72585;
  border: none;
  color: #fff;
  padding: 0.75rem 2.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.parallax-button:hover {
  background-color: #d61f72;
  transform: translateY(-2px);
}

.parallax-button-text {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
