@tailwind base;
@tailwind components;
@tailwind utilities;

/* Simple custom styles */
.gradient-text {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-background {
      background: linear-gradient(#15082F, #260469);

}
footer p {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 20px !important;
}
.text-register {
  font-size: 26.67px;
  line-height: 40px;
  font-weight: 600;
}
.text-email {
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
}
.heading-large {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 125%;
  letter-spacing: -4%;
  text-transform: uppercase;
}

/* .hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background: url('/assets/hero-bg.svg') no-repeat top center;
  background-size: cover;
  z-index: -10;
  pointer-events: none;
} */
.shape-bg {
  background: url('/assets/hero-bg.svg') no-repeat top center;
  background-size: cover;
  background-position: center top;
  z-index: -10;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to bottom, 
    black 0%, 
    black 70%, 
    transparent 100%
);
-webkit-mask-image: linear-gradient(to bottom, 
    black 0%, 
    black 70%, 
    transparent 100%
);

}

/* For larger screens, ensure full coverage */
@media (min-width: 1440px) {
  .shape-bg {
    background-size: 100% auto;
    min-width: 100%;
  }
}

@media (min-width: 1920px) {
  .shape-bg {
    background-size: cover;
    background-position: center center;
  }
}
