/* Hero Section Component - Enhanced */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Animated Background Layers */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 224, 224, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: heroBackground 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    animation: patternMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes heroBackground {
    0% { 
        transform: scale(1) rotate(0deg);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        filter: hue-rotate(15deg);
    }
    100% { 
        transform: scale(1.1) rotate(2deg);
        filter: hue-rotate(30deg);
    }
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    max-width: 900px;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

/* Enhanced Title with Multiple Effects */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: var(--font-weight-extra-bold);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(45deg, #fff, #40e0e0, #fff, #ff6b6b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        heroTitleSlide 1.2s ease-out,
        gradientShift 4s ease infinite,
        float 6s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(90deg);
        filter: blur(10px);
    }
    50% {
        transform: translateY(0) scale(1.05) rotateX(0deg);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

/* Enhanced Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    opacity: 0.95;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    animation: 
        heroSubtitleSlide 1.5s ease-out 0.3s both,
        pulse 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(45deg);
        filter: blur(5px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

/* Interactive CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-white), #f0f0f0);
    color: var(--color-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
    box-shadow: 
        var(--shadow-heavy),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
    animation: heroCTASlide 1.8s ease-out 0.6s both;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 211, 0.2), transparent);
    transition: var(--transition);
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 112, 211, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: var(--transition-bounce);
    border-radius: 50%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 112, 211, 0.3),
        0 0 25px rgba(64, 224, 224, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, #ffffff, var(--color-light));
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-cta i {
    transition: var(--transition-bounce);
    font-size: 1.1em;
}

.hero-cta:hover i {
    transform: rotate(15deg) scale(1.2);
    color: var(--color-secondary);
}

@keyframes heroCTASlide {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateY(45deg);
        filter: blur(5px);
    }
    70% {
        transform: translateY(-5px) scale(1.1) rotateY(0deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

/* Floating Elements */
.hero-content::before {
    content: '🎵';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.hero-content::after {
    content: '🔊';
    position: absolute;
    bottom: -20px;
    right: -30px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: float 5s ease-in-out infinite reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: var(--spacing-xl);
        padding: var(--spacing-xs);
    }
    
    .hero-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .hero-content::before,
    .hero-content::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        animation-duration: 1s;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-cta {
        gap: var(--spacing-xs);
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
}
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 112, 211, 0.2), transparent);
    transition: var(--transition);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--gradient-primary);
    color: var(--color-white);
}

@keyframes heroCTASlide {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
}
