.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--color-background);
    overflow: hidden;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 6rem;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.hero-text-container {
    position: relative;
    height: 70px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    width: 100%;
}

.hero-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    font-size: 1.6rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    text-align: center;
    left: 0;
    right: 0;
}

.hero-text .gradient-orange {
    background: linear-gradient(90deg, #ED8806, #F0A041);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text .gradient-blue {
    background: linear-gradient(90deg, #19A4C3, #005F99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 30%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-sm) * 0.7);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.scroll-line {
    width: 1.4px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.63rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .hero-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        bottom: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
} 