/* ============================================================
   JL'O DESIGN - HERO / BANNIÈRE PRINCIPALE
   ============================================================ */


/* ============================================================
   SECTION HERO
   ============================================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg,
        var(--color-black) 0%,
        var(--color-gray-700) 50%,
        var(--color-black) 100%);
    color: var(--color-white);
    overflow: hidden;
    min-height: 600px;
}

/* Image de fond placeholder élégant */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 75% 50%,
            rgba(201, 169, 97, 0.15) 0%,
            transparent 60%),
        linear-gradient(135deg,
            #0a0a0a 0%,
            #1a1a1a 50%,
            #0a0a0a 100%);
    z-index: 0;
}

/* Effet décoratif - motif lumineux */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        rgba(201, 169, 97, 0.2) 0%,
        transparent 70%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 3rem;
    min-height: 600px;
}


/* ============================================================
   CONTENU TEXTUEL (côté gauche)
   ============================================================ */
.hero-content {
    padding-right: 2rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    color: var(--color-gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-gold {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-style: italic;
}

.hero-description {
    font-size: var(--fs-base);
    color: var(--color-gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-description p {
    margin-bottom: 0.3rem;
}


/* ============================================================
   BOUTONS HERO
   ============================================================ */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-buttons .btn-jlo-gold,
.hero-buttons .btn-jlo-outline,
.hero-buttons .btn-jlo-whatsapp {
    padding: 0.85rem 1.75rem;
    font-size: var(--fs-xs);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* ============================================================
   IMAGE / VISUEL (côté droit)
   ============================================================ */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        var(--color-gold-dark) 0%,
        var(--color-gold) 50%,
        var(--color-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.hero-image-placeholder::after {
    content: 'IMAGE PRINCIPALE';
    position: absolute;
    bottom: 30%;
    font-size: var(--fs-sm);
    letter-spacing: 6px;
    opacity: 0.8;
}

/* Décoration or autour de l'image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--color-gold);
    border-right: 3px solid var(--color-gold);
    z-index: 3;
    pointer-events: none;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
    z-index: 3;
    pointer-events: none;
}


/* ============================================================
   BARRE DES AVANTAGES (en bas du Hero)
   ============================================================ */
.hero-advantages {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding: 1.5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
}

.advantage-icon {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: var(--fs-base);
    flex-shrink: 0;
}

.advantage-text {
    display: flex;
    flex-direction: column;
}

.advantage-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.1rem;
    letter-spacing: 0.5px;
}

.advantage-subtitle {
    font-size: var(--fs-xs);
    color: var(--color-gray-400);
}


/* ============================================================
   INDICATEURS DU SLIDER (3 points)
   ============================================================ */
.hero-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-indicator {
    width: 30px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.hero-indicator.active {
    background-color: var(--color-gold);
    width: 50px;
}

.hero-indicator:hover {
    background-color: rgba(201, 169, 97, 0.6);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablette (max 991px) */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-gold {
        font-size: 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-subtitle {
        font-size: var(--fs-sm);
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .hero-title-gold {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: var(--fs-sm);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-buttons .btn-jlo-gold,
    .hero-buttons .btn-jlo-outline,
    .hero-buttons .btn-jlo-whatsapp {
        justify-content: center;
        width: 100%;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        width: 60px;
        height: 60px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .advantage-title {
        font-size: var(--fs-xs);
    }

    .advantage-subtitle {
        font-size: 0.7rem;
    }

    .hero-indicators {
        bottom: 80px;
    }
}

/* Très petit mobile (max 480px) */
@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
}