.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.5) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 100px 0 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__slogan {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 40px;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero__slogan span {
    display: block;
    color: var(--color-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__cta:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1.5);
        transform-origin: top;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero__slogan {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
    }
    
    .hero__content {
        padding: 80px 0 50px;
    }
    
    .hero__slogan {
        font-size: 34px;
        margin-bottom: 30px;
    }
    
    .hero__cta {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .hero__scroll {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero__slogan {
        font-size: 26px;
    }
    
    .hero__cta {
        width: 100%;
        justify-content: center;
    }
}