
/* HERO SECTION ENHANCEMENTS */

#home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #000000, #111111);
  color: white;
}

.text-container h1 span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #fff 40%, #00bfff 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

#home button {
  background: #ff3c3c;
  border: none;
  padding: 12px 30px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#home button::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.4s ease-in-out;
  z-index: 0;
}

#home button:hover::before {
  left: 0;
}

#home button:hover {
  box-shadow: 0 0 15px #ff3c3caa;
}

.floating-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 136, 255, 0.15), transparent 60%);
  border-radius: 50%;
  animation: floatUp 10s ease-in-out infinite;
  z-index: 0;
}

.floating-shape:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}
.floating-shape:nth-child(2) {
  bottom: 15%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

#home::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/grid-lines.svg');
  opacity: 0.03;
  background-size: cover;
  animation: panBG 60s linear infinite;
  z-index: 0;
}

@keyframes panBG {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

#auth-carousel h2,
#auth-carousel h3 {
  text-shadow: 0 0 10px #000;
}
