/**
 * ZORIN Fundry - Стили для главного баннера
 * Главная секция маркетплейса с призывом к действию
 */

.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-blur-1 {
    top: -10%;
    left: -10%;
}

.hero-blur-2 {
    bottom: 0;
    right: -10%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 80%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.dark-mode .hero-image img,
html.dark-mode .hero-image img {
    box-shadow: var(--shadow-dark);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateZ(20px);
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 0;
}

/* Статистика маркетплейса */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-bg-alt);
}

.dark-mode .hero-stats,
html.dark-mode .hero-stats {
    border-color: var(--dark-bg-alt);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--light-text-secondary);
}

.dark-mode .hero-stat-label {
    color: var(--dark-text-secondary);
}

/* Адаптивность для планшетов */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        text-align: center;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 576px) {
    .hero {
        padding-top: 150px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}
