/**
 * Evolve Laba Homepage - Styles Frontend
 * Version: 2.1.0
 * Développé par EvolTech - https://evolvetech.fr
 */

/* ==========================================================================
   Reset et Base
   ========================================================================== */
* {
    box-sizing: border-box;
}

.evolve-laba-homepage {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Container pleine largeur
   ========================================================================== */
.laba-container-full {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
}

.laba-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 70px 0;
}

/* ==========================================================================
   Images
   ========================================================================== */

/* Style commun pour TOUS les conteneurs d'images - CONTRAINTES STRICTES */
.laba-mama-image,
.laba-grumeti-image,
.laba-migration-large,
.laba-migration-small,
.laba-fanvove-main,
.laba-fanvove-corals > div,
.laba-fanvove-mini,
.laba-fanvove-bottom > div,
.laba-ooa-hero,
.laba-ooa-item,
.laba-manor-item,
.laba-jong-item,
.laba-siwandu-item,
.laba-siwandu-bird {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* La hauteur sera définie par min-height dans chaque section */
    /* On limite la hauteur maximale à 2000px pour éviter que les images trop grandes déforment le layout */
    max-height: 2000px;
    /* S'assurer que le conteneur prend au minimum la hauteur définie */
    height: auto;
}

/* Surcharger le display pour les conteneurs qui utilisent grid directement */
.laba-fanvove-corals,
.laba-fanvove-mini-grid,
.laba-fanvove-bottom {
    display: grid;
}

.laba-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

.laba-image-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
}

/* ==========================================================================
   Typographie - Styles par défaut
   ========================================================================== */
.laba-title {
    font-family: "Centra", Sans-serif;
    margin: 0 0 12px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.laba-subtitle {
    font-family: "Centra", Sans-serif;
    margin: 0 0 20px 0;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

/* Barre décorative sous les sous-titres */
.laba-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 2px;
    background-color: currentColor;
}

.laba-description {
    font-family: "Centra", Sans-serif;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* ==========================================================================
   Boîtes de texte par défaut
   ========================================================================== */
.laba-text-box-mama,
.laba-text-box-grumeti,
.laba-text-box-migration,
.laba-text-box-fanvove,
.laba-text-box-ooa,
.laba-text-box-manor,
.laba-text-box-jong,
.laba-text-box-siwandu {
    padding: 28px 22px;
}

/* Styles des boutons - Fond blanc avec bordure */
.laba-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFFFFF;
    color: #3D3D3D;
    text-decoration: none;
    font-family: "Centra", Sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #3D3D3D;
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.laba-button:hover {
    background-color: #3D3D3D;
    color: #FFFFFF;
    border-color: #3D3D3D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Section 1 - Mama Simba
   LAYOUT: Grande img gauche | Texte beige + placeholder | Image aérienne droite
           2 images en bas
   ========================================================================== */
.laba-section-1 {
    background-color: #C9B896;
}

.laba-grid-mama-simba {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.5fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.laba-mama-image:nth-child(1) {
    /* Grande image intérieure gauche - TOUTE LA HAUTEUR */
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 650px;
    max-height: 650px;
}

.laba-text-box-mama {
    /* Texte + placeholder au centre */
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-color: #C9B896;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.laba-mama-placeholder {
    width: 100%;
    height: 140px;
    background-color: #FFFFFF;
    flex-shrink: 0;
}

.laba-mama-image:nth-child(3) {
    /* Image aérienne droite haut */
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    min-height: 410px;
    max-height: 410px;
}

.laba-mama-image:nth-child(4) {
    /* Image intérieur bas centre */
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 240px;
    max-height: 240px;
}

.laba-mama-image:nth-child(5) {
    /* Image girafe bas droite */
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    min-height: 240px;
    max-height: 240px;
}

/* ==========================================================================
   CONTRAINTES DE HAUTEUR MAXIMALE - Empêcher les images trop grandes
   ========================================================================== */

/* Section 2 - Grumeti */
.laba-grumeti-image:nth-child(2),
.laba-grumeti-image:nth-child(3),
.laba-grumeti-image:nth-child(4),
.laba-grumeti-image:nth-child(5) {
    max-height: 210px;
}

.laba-grumeti-image:nth-child(6) {
    max-height: 440px;
}

.laba-grumeti-image:nth-child(7) {
    max-height: 200px;
}

/* Section 3 - Migration */
.laba-migration-large:nth-child(1),
.laba-migration-large:nth-child(3) {
    max-height: 410px;
}

.laba-migration-small:nth-child(4),
.laba-migration-small:nth-child(5),
.laba-migration-small:nth-child(6) {
    max-height: 240px;
}

/* Section 4 - Fanvove */
.laba-fanvove-main {
    max-height: 520px;
}

.laba-fanvove-corals > div {
    max-height: 160px;
}

.laba-fanvove-mini {
    max-height: 100px;
}

.laba-fanvove-bottom > div {
    max-height: 160px;
}

/* Section 5 - Out of Africa */
.laba-ooa-hero {
    max-height: 340px;
}

.laba-ooa-item:nth-child(3),
.laba-ooa-item:nth-child(4),
.laba-ooa-item:nth-child(5),
.laba-ooa-item:nth-child(7) {
    max-height: 200px;
}

/* Section 6 - Manor */
.laba-manor-item:nth-child(2),
.laba-manor-item:nth-child(3) {
    max-height: 260px;
}

.laba-manor-item:nth-child(4),
.laba-manor-item:nth-child(5),
.laba-manor-item:nth-child(6) {
    max-height: 200px;
}

.laba-manor-item:nth-child(7) {
    max-height: 220px;
}

/* Section 7 - Jongomero */
.laba-jong-left .laba-jong-item:nth-child(1) {
    max-height: 280px;
}

.laba-jong-left .laba-jong-item:nth-child(2) {
    max-height: 200px;
}

.laba-jong-left .laba-jong-item:nth-child(3) {
    max-height: 180px;
}

.laba-jong-right .laba-jong-item:nth-child(1),
.laba-jong-right .laba-jong-item:nth-child(2) {
    max-height: 340px;
}

/* Section 8 - Siwandu */
.laba-siwandu-bird {
    max-height: 340px;
}

.laba-siwandu-item:nth-child(3),
.laba-siwandu-item:nth-child(6),
.laba-siwandu-item:nth-child(7),
.laba-siwandu-item:nth-child(8) {
    max-height: 200px;
}

.laba-siwandu-item:nth-child(4),
.laba-siwandu-item:nth-child(5) {
    max-height: 220px;
}

.laba-siwandu-item:nth-child(9) {
    max-height: 420px;
}

/* ==========================================================================
   Section 2 - Grumeti (Fond noir)
   LAYOUT: Texte à gauche (toute hauteur) | Images col 2 | Images col 3 avec grande chambre
   ========================================================================== */
.laba-section-2 {
    background-color: #3D3D3D;
}

.laba-grid-grumeti {
    display: grid;
    grid-template-columns: 360px 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
}

.laba-text-box-grumeti {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    background-color: #3D3D3D;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 25px;
}

/* Image 1 : Piscine (haut centre) */
.laba-grumeti-image:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-height: 210px;
}

/* Image 2 : Statue/Art rouge (haut droite) */
.laba-grumeti-image:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    min-height: 210px;
}

/* Image 3 : Sculpture beige (milieu centre) */
.laba-grumeti-image:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 210px;
}

/* Image 4 : Vase/Pot (milieu centre-bas) */
.laba-grumeti-image:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    min-height: 210px;
}

/* Image 5 : Grande chambre (droite, 2 lignes) */
.laba-grumeti-image:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
    min-height: 440px;
}

/* Image 6 : Si nécessaire (bas gauche sous texte) */
.laba-grumeti-image:nth-child(7) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    min-height: 200px;
}

/* ==========================================================================
   Section 3 - Migration Camp (Fond beige)
   LAYOUT: Grande img intérieur | Texte beige | Grande img zèbres
           Image blanc | Image camp | Image chambre
   ========================================================================== */
.laba-section-3 {
    background-color: #C9B896;
}

.laba-grid-migration {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

/* Image 1 : Grande image intérieur lustre (haut gauche) */
.laba-migration-large:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    min-height: 410px;
}

/* Texte beige au centre */
.laba-text-box-migration {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background-color: #C9B896;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 25px;
    min-height: 410px;
}

/* Image 2 : Grande image zèbres migration (haut droite) */
.laba-migration-large:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    min-height: 410px;
}

/* Image 3 : Intérieur blanc (bas gauche) */
.laba-migration-small:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    min-height: 240px;
}

/* Image 4 : Camp/Tentes extérieur (bas centre) */
.laba-migration-small:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 240px;
}

/* Image 5 : Intérieur chambre/tente (bas droite) */
.laba-migration-small:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    min-height: 240px;
}

/* ==========================================================================
   Section 4 - Fanvove Island (Fond blanc)
   LAYOUT: Col gauche: Grande plage + 2 coraux | Col droite: Mini grid + Texte + 2 images
   ========================================================================== */
.laba-section-4 {
    background-color: #FFFFFF;
}

.laba-grid-fanvove {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
}

/* Image 1 : Grande plage (gauche, 2 rangées) */
.laba-fanvove-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 520px;
}

/* Images 2-3 : 2 Coraux en bas à gauche */
.laba-fanvove-corals {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.laba-fanvove-corals > div {
    min-height: 160px;
}

/* Mini grid droite en haut (4x2) - Images 4-8 */
.laba-fanvove-mini-grid {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

.laba-fanvove-mini {
    min-height: 100px;
}

/* Texte au milieu à droite */
.laba-text-box-fanvove {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-color: #FFFFFF;
    padding: 25px 20px;
}

/* 2 images mer en bas à droite */
.laba-fanvove-bottom {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.laba-fanvove-bottom > div {
    min-height: 160px;
}

/* ==========================================================================
   Section 5 - Out of Africa (Fond blanc)
   LAYOUT: Grande paysage en haut
           Texte beige | Tente | Voiture | Éléphant | Logo+Bouton | Grande chambre
   ========================================================================== */
.laba-section-5 {
    background-color: #FFFFFF;
}

.laba-grid-outofafrica {
    display: grid;
    grid-template-columns: 420px repeat(5, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

/* Image 1 : Grande paysage montagne (pleine largeur en haut) */
.laba-ooa-hero {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
    min-height: 340px;
}

/* Texte beige à gauche en bas */
.laba-text-box-ooa {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background-color: #C9B896;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image 2 : Tente */
.laba-ooa-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Image 3 : Voiture (avec X bleu - masquer mobile) */
.laba-ooa-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Image 4 : Éléphant */
.laba-ooa-item:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Logo + Bouton */
.laba-ooa-logo-button {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.laba-ooa-logo {
    width: 100%;
    max-width: 180px;
}

/* Image 5 : Grande chambre/lustre (droite) */
.laba-ooa-item:nth-child(7) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* ==========================================================================
   Section 6 - Jongomero Manor (Fond blanc/gris)
   LAYOUT: Texte noir gauche | Grande panorama + Toiture en haut | Grid 3 images + Grande paysage
   ========================================================================== */
.laba-section-6 {
    background-color: #FFFFFF;
}

.laba-grid-manor {
    display: grid;
    grid-template-columns: 360px repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
}

/* Texte noir à gauche (toute la hauteur) */
.laba-text-box-manor {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    background-color: #3D3D3D;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 25px;
}

/* Image 1 : Grande panorama lodges (haut, 2 colonnes) */
.laba-manor-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    min-height: 260px;
}

/* Image 2 : Toiture/Intérieur (haut droite) */
.laba-manor-item:nth-child(3) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    min-height: 260px;
}

/* Image 3 : Palmiers (bas gauche - avec X bleu, masquer mobile) */
.laba-manor-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Image 4 : Piscine/Spa (bas centre) */
.laba-manor-item:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Image 5 : Éléphant (bas droite) */
.laba-manor-item:nth-child(6) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Grande image paysage elephants (bas, toute la largeur droite) */
.laba-manor-item:nth-child(7) {
    grid-column: 2 / 5;
    grid-row: 3 / 4;
    min-height: 220px;
}

/* ==========================================================================
   Section 7 - Jongomero (Fond beige)
   LAYOUT: 3 images gauche | Texte beige centre + logo | 2 images droite
   ========================================================================== */
.laba-section-7 {
    background-color: #C9B896;
}

.laba-grid-jongomero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: start;
}

/* Colonne gauche : 3 images */
.laba-jong-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Image 1 : Nature/Arbre (haut gauche) */
.laba-jong-left .laba-jong-item:nth-child(1) {
    min-height: 280px;
}

/* Image 2 : Kudu (milieu gauche) */
.laba-jong-left .laba-jong-item:nth-child(2) {
    min-height: 200px;
}

/* Image 3 : Rivière/Personnes (bas gauche) */
.laba-jong-left .laba-jong-item:nth-child(3) {
    min-height: 180px;
}

/* Texte beige au centre */
.laba-text-box-jong {
    background-color: #C9B896;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px 28px;
}

.laba-jong-logo {
    width: 80px;
    height: 80px;
    margin: 15px 0;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Colonne droite : 2 images */
.laba-jong-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Image 4 : Salle à manger/Restaurant (haut droite) */
.laba-jong-right .laba-jong-item:nth-child(1) {
    flex: 1;
    min-height: 340px;
}

/* Image 5 : Chambre/Lit (bas droite) */
.laba-jong-right .laba-jong-item:nth-child(2) {
    flex: 1;
    min-height: 340px;
}

/* ==========================================================================
   Section 8 - Siwandu (Fond vert foncé)
   LAYOUT: Col 1: Texte + Oiseau | Cols 2-4: Grande bateau + Hippo + Grid images + Grande intérieur
   ========================================================================== */
.laba-section-8 {
    background-color: #3D3D3D;
}

.laba-grid-siwandu {
    display: grid;
    grid-template-columns: 340px repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
}

/* Texte à gauche en haut (2 rangées) */
.laba-text-box-siwandu {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background-color: #3D3D3D;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 25px;
}

/* Image 1 : Oiseau coloré (gauche bas, sous le texte) */
.laba-siwandu-bird {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    min-height: 200px;
}

/* Image 2 : Grande bateau/safari (haut, 2 cols) */
.laba-siwandu-item:nth-child(3) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    min-height: 220px;
}

/* Image 3 : Hippo (haut droite) */
.laba-siwandu-item:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    min-height: 220px;
}

/* Image 4 : Coucher de soleil (milieu gauche - X bleu, hide mobile) */
.laba-siwandu-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Image 5 : Arbres/Repas (milieu centre) */
.laba-siwandu-item:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    min-height: 200px;
}

/* Image 6 : Baobabs (bas gauche - X bleu, hide mobile) */
.laba-siwandu-item:nth-child(7) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    min-height: 200px;
}

/* Image 7 : Table/Repas (bas centre) */
.laba-siwandu-item:nth-child(8) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    min-height: 200px;
}

/* Image 8 : Grande intérieure (droite, 2 rangées) */
.laba-siwandu-item:nth-child(9) {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
    min-height: 420px;
}

/* ==========================================================================
   Responsive - Tablette (max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .laba-container-full {
        padding: 0 20px;
    }
    
    .laba-section {
        padding: 40px 0;
    }
    
    /* Section 1 */
    .laba-grid-mama-simba {
        grid-template-columns: 1fr 1fr;
    }
    
    .laba-mama-image:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .laba-mama-image:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    /* Section 2 */
    .laba-grid-grumeti {
        grid-template-columns: 1fr 1fr;
    }
    
    .laba-text-box-grumeti {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    /* Section 3 */
    .laba-grid-migration {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Section 4 */
    .laba-grid-fanvove {
        grid-template-columns: 1fr;
    }
    
    .laba-fanvove-main {
        grid-row: 1 / 2;
    }
    
    .laba-fanvove-mini-grid {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .laba-text-box-fanvove {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    /* Section 5 */
    .laba-ooa-content {
        grid-template-columns: 1fr;
    }
    
    .laba-ooa-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Section 6 */
    .laba-grid-manor {
        grid-template-columns: 1fr;
    }
    
    /* Section 7 */
    .laba-grid-jongomero {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Section 8 */
    .laba-grid-siwandu {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Responsive - Mobile (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .laba-section {
        padding: 30px 0;
    }
    
    .laba-container-full {
        padding: 0 15px;
    }
    
    .laba-text-box-mama,
    .laba-text-box-grumeti,
    .laba-text-box-migration,
    .laba-text-box-fanvove,
    .laba-text-box-ooa,
    .laba-text-box-manor,
    .laba-text-box-jong,
    .laba-text-box-siwandu {
        padding: 18px 15px;
    }
    
    /* Masquer les éléments marqués */
    .hide-mobile {
        display: none !important;
    }
    
    /* Tous en stack vertical sur mobile */
    .laba-grid-mama-simba,
    .laba-grid-grumeti,
    .laba-grid-migration,
    .laba-grid-fanvove,
    .laba-grid-manor,
    .laba-grid-jongomero,
    .laba-grid-siwandu {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .laba-grid-mama-simba > *,
    .laba-grid-grumeti > *,
    .laba-grid-migration > *,
    .laba-manor-gallery > *,
    .laba-jong-left > *,
    .laba-jong-right > *,
    .laba-siwandu-gallery > * {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        min-height: 200px !important;
    }
    
    .laba-fanvove-mini-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .laba-ooa-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ==========================================================================
   Hover effects
   ========================================================================== */
.laba-image {
    transition: transform 0.35s ease;
}

.laba-mama-image:hover .laba-image,
.laba-grumeti-image:hover .laba-image,
.laba-migration-large:hover .laba-image,
.laba-migration-small:hover .laba-image,
.laba-fanvove-main:hover .laba-image,
.laba-fanvove-mini:hover .laba-image,
.laba-ooa-hero:hover .laba-image,
.laba-ooa-item:hover .laba-image,
.laba-manor-item:hover .laba-image,
.laba-jong-item:hover .laba-image,
.laba-siwandu-item:hover .laba-image {
    transform: scale(1.05);
}

/* ==========================================================================
   Accessibilité
   ========================================================================== */
img {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
