/* Hero Section */
.lp_gamme .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.lp_gamme .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.lp_gamme .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp_gamme .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.lp_gamme .hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.lp_gamme .hero-title {
    font-family: var(--font-family-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.lp_gamme .hero-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lp_gamme .hero-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.lp_gamme .hero-subtitle.animate-in {
    opacity: 0.9;
    transform: translateY(0);
}

/* Style spécifique pour le CTA de la section Hero */
.lp_gamme .hero .btn-primary {
    font-family: var(--font-family-primary);
    background: transparent;
    color: var(--text-light);
    border-radius: 0; /* Bordure carrée */
    border: 2px solid var(--text-light);
    padding: 14px 28px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.lp_gamme .hero .btn-primary.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Indicateur de scroll */
.lp_gamme .hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lp_gamme .hero-scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.lp_gamme .scroll-arrow-svg {
    width: 2rem;
    height: 2rem;
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lp_gamme .hero-scroll-indicator:hover .scroll-arrow-svg {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.lp_gamme .hero .btn-primary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .lp_gamme .hero-title {
        font-size: 2.5rem;
    }
    
    .lp_gamme .hero .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lp_gamme .hero-title {
        font-size: 2rem;
    }
    
    .lp_gamme .hero .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .lp_gamme .scroll-arrow-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .lp_gamme .hero-scroll-indicator {
        bottom: 1.5rem;
    }
}
