/* ==========================================================================
   HERO SECTION - CSS SIMPLE ET ROBUSTE
   Version facile à modifier manuellement
   ========================================================================== */

/* Reset de base */
* {
    box-sizing: border-box;
}

/* Hero Container - Full width */
.hero-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Grid principal - 2 colonnes égales */
.hero-grid {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

/* Colonne gauche - 50% exact */
.hero-left {
    width: 50%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Colonne droite - 50% exact */
.hero-right {
    width: 50%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
        padding: 20px;
    }
}

/* ==========================================================================
   VARIANTES POUR TESTER
   ========================================================================== */

/* Variante 1: Avec bordure visible */
.hero-left.with-border {
    border-right: 2px solid white;
}

/* Variante 2: Avec background différent */
.hero-left.with-bg {
    background: rgba(139, 92, 246, 0.2);
}

.hero-right.with-bg {
    background: rgba(255, 255, 255, 0.2);
}

/* Variante 3: Avec padding différent */
.hero-left.custom-padding {
    padding: 60px 50px;
}

.hero-right.custom-padding {
    padding: 60px 50px;
}
