/* Banner section styles */
.banner {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  background-color: var(--black);
  position: relative;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 61, 61, 0.2), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.2), transparent 30%);
  z-index: -1;
}

.banner .shape1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  background: radial-gradient(circle, var(--primary-red-light), transparent 70%);
  border-radius: 43% 57% 70% 30% / 45% 36% 64% 55%;
  animation: morphShape1 15s infinite alternate ease-in-out;
}

.banner .shape2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: 15%;
  background: radial-gradient(circle, var(--secondary-yellow-light), transparent 70%);
  border-radius: 64% 36% 27% 73% / 54% 67% 33% 46%;
  animation: morphShape2 18s infinite alternate ease-in-out;
}

.banner .shape3 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 25%;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
  border-radius: 24% 76% 35% 65% / 27% 35% 65% 73%;
  animation: morphShape3 20s infinite alternate ease-in-out;
}

@keyframes morphShape1 {
  0% {
    border-radius: 43% 57% 70% 30% / 45% 36% 64% 55%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 63% 37% 40% 60% / 35% 56% 44% 65%;
    transform: translate(30px, 20px) rotate(10deg);
  }
  100% {
    border-radius: 33% 67% 60% 40% / 55% 46% 54% 45%;
    transform: translate(-20px, -30px) rotate(-10deg);
  }
}

@keyframes morphShape2 {
  0% {
    border-radius: 64% 36% 27% 73% / 54% 67% 33% 46%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 34% 66% 57% 43% / 64% 37% 63% 36%;
    transform: translate(-30px, 20px) rotate(-15deg);
  }
  100% {
    border-radius: 44% 56% 77% 23% / 34% 77% 23% 66%;
    transform: translate(20px, -20px) rotate(15deg);
  }
}

@keyframes morphShape3 {
  0% {
    border-radius: 24% 76% 35% 65% / 27% 35% 65% 73%;
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    border-radius: 54% 46% 65% 35% / 57% 65% 35% 43%;
    transform: translate(20px, -30px) rotate(10deg);
  }
  100% {
    border-radius: 74% 26% 45% 55% / 17% 75% 25% 83%;
    transform: translate(-30px, 20px) rotate(-10deg);
  }
}

.banner-content {
  text-align: center;
  max-width: 800px;
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
  animation: fadeIn 1.5s ease-out;
}

.banner-content h2 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(to right, var(--primary-red), var(--secondary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.banner-content p {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .banner-content h2 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1.2rem;
  }
  
  .banner .shape1,
  .banner .shape2,
  .banner .shape3 {
    transform: scale(0.7);
  }
}