/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background-image: url('../images/2.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--color-white);
    max-width: 600px;
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin-left: 5%;
}

.hero-title {
    font-size: var(--fs-hero);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #2EB2E3, #95E1FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-body-large);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    gap: var(--spacing-md);
}

.hero-cta .btn {
    margin: 0;
    min-width: 160px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--color-white);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Tablet */
@media (max-width: 1199px) {
    .hero-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .hero-title {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
        justify-content: center;
        background-position: right center;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.55);
    }

    .hero-content {
        padding: var(--spacing-xl-mobile) var(--spacing-lg-mobile);
        margin-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: var(--fs-hero-mobile);
        margin-bottom: var(--spacing-md-mobile);
    }

    .hero-subtitle {
        font-size: var(--fs-body-large-mobile);
        margin-bottom: var(--spacing-lg-mobile);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin: 0;
        min-width: auto;
    }

    .scroll-indicator {
        bottom: var(--spacing-lg-mobile);
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 28px;
    }
}