/* Section Hero - Basée sur le design Figma */
.heho-home-hero {
    position: relative;
    min-height: 866px;
    background: var(--color-black);
    overflow: hidden;
    padding: 50px 0 100px;
}

.heho-home-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 116.12%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.heho-home-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.heho-home-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 70vh;
}

/* Contenu Principal */
.heho-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex: 1;
}

.heho-hero-content__left {
    flex: 1;
    max-width: 603px;
}

.heho-hero-title {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: var(--font-h1-desktop);
    line-height: var(--line-height-h1);
    color: var(--color-white);
    margin-bottom: 20px;
}

.heho-hero-description {
    font-family: var(--font-base);
    font-size: var(--font-text-desktop);
    color: var(--color-white);
    line-height: var(--line-height-normal);
    margin-bottom: 25px;
    max-width: 601px;
}

.heho-hero-actions {
    display: flex;
    gap: 35px;
    align-items: center;
}

/* Image de la roue */
.heho-hero-content__right {
    width: 739px;
    height: 475px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heho-hero-wheel {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.heho-hero-wheel__image {
    width: 90%;
    height: 90%;
    background-image: url('../images/rs.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .heho-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .heho-hero-content__left {
        max-width: 100%;
    }
    
    .heho-hero-content__right {
        width: 100%;
        max-width: 600px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .heho-home-hero {
        padding: 20px 0 40px;
        min-height: auto;
    }
    
    .heho-home-hero__inner {
        min-height: 60vh;
    }
    
    .heho-hero-content {
        gap: 30px;
    }
    
    .heho-hero-title {
        font-size: var(--font-h1-mobile);
        line-height: 1.2;
    }
    
    .heho-hero-description {
        font-size: var(--font-text-mobile);
    }
    
    .heho-hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .heho-hero-actions .heho-button-primary,
    .heho-hero-actions .heho-button-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .heho-hero-content__right {
        height: 250px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .heho-home-hero {
        padding: 15px 0 30px;
    }
    
    .heho-home-hero__inner {
        min-height: 50vh;
    }
    
    .heho-hero-title {
        font-size: 28px;
        line-height: 1.1;
    }
    
    .heho-hero-content__right {
        height: 200px;
    }
}