/* Hero Section Simple Styles */

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #FF6B35, #F7931E, #FFCC02);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Text Lines */
.hero-text-line {
    opacity: 0;
    transform: translateY(30px);
}

/* Hero Subtitle */
.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Description */
.hero-description p {
    opacity: 0;
    transform: translateY(20px);
}

/* Hero Buttons */
.hero-buttons > div {
    opacity: 0;
    transform: translateY(20px);
}

/* Scroll Indicator */
.scroll-indicator {
    z-index: 20;
    position: absolute !important;
    bottom: 2rem !important;
    /* opacity: 0; */
    transform: translateY(20px);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #FF6B35;
    border-radius: 12px;
    position: relative;
    animation: mouse-bounce 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #FF6B35;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s infinite;
}

@keyframes mouse-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wheel-scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* Simple Cursor Blink */
.cursor {
    display: inline-block;
    color: #FF6B35;
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: normal;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Button Hover Effects */
.cta-primary {
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.cta-secondary {
    position: relative;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text-line {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
} 