/* Advanced Hero Section Styles */

/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  padding: 0 5%;
  background: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0.9) 70%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 1s ease forwards 0.5s;
  padding: 0 10px;
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  position: relative;
}

.hero-content h1 .highlight {
  font-size: 1.2em;
  transform: rotate(-5deg);
  display: inline-block;
  text-shadow: 0 0 10px rgba(140, 26, 255, 0.5);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Hero Background Elements */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
  filter: blur(40px);
}

.hero-circle:nth-child(1) {
  width: 400px;
  height: 400px;
  right: 10%;
  top: 20%;
  background: var(--primary-gradient);
  animation: pulseScale 8s ease-in-out infinite alternate;
}

.hero-circle:nth-child(2) {
  width: 300px;
  height: 300px;
  right: 25%;
  bottom: 15%;
  background: var(--secondary-gradient);
  animation: pulseScale 12s ease-in-out infinite alternate-reverse;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0.2;
  }
}

/* Enhanced Buttons */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--light-color);
  box-shadow: 0 10px 20px rgba(140, 26, 255, 0.2);
}

.btn-primary::after {
  background: var(--secondary-gradient);
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(140, 26, 255, 0.4);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--light-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary::after {
  background: var(--primary-gradient);
  opacity: 0;
}

.btn-secondary:hover {
  color: var(--light-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}

.btn-secondary:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
