/* Hero Section Redesign - Updated */
.hero-section {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90%;
  width: 100%;
}

.hero-logo {
  perspective: 1000px;
  margin-bottom: 2rem;
}

.hero-logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.hero-logo-letter {
  display: inline-block;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 800;
  color: #9d4edd;
  opacity: 0;
  transform: translateY(100px) rotateX(-90deg);
  transform-origin: 50% 50% -50px;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
  will-change: transform, opacity;
}

.hero-tagline {
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-button {
    width: 100%;
  }
}

.hero-button {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-button-primary {
  background: #9d4edd;
  color: white;
  box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
}

.hero-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid #9d4edd;
  box-shadow: 0 4px 15px rgba(157, 78, 221, 0.1);
}

.hero-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(157, 78, 221, 0.5);
}

.hero-button-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #9d4edd, #5a189a);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.hero-button:hover .hero-button-glow {
  opacity: 1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
}

.hero-scroll-indicator span {
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  position: relative;
}

.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  margin-left: -3px;
  border-radius: 50%;
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}