/**
 * Hero Section Enhancement
 * Modern tech-forward hero design
 */

/* Add particles background to hero */
.hero-section {
    position: relative;
    overflow: hidden;
}

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

#hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Ensure content is above particles */
.hero-section .hero-content,
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Enhanced title with glow effect */
.hero-section .hero-title {
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.3);
}

/* Enhanced CTA buttons */
.hero-section .hero-cta .btn-primary {
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .hero-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

/* Add floating animation to scroll indicator */
.scroll-indicator {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glassmorphism for hero content background (optional) */
.hero-section .hero-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-section .hero-content {
        padding: 40px 25px;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(5px);
    }
}
