/* ========================================
   Embarquer chez Bellonie Section Styles
   ======================================== */

.embarquer_bellonie_section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Titre de la section */
.section_title_eb {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #514D40;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Grid des items - 5 colonnes */
.embarquer_items_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: start;
}

/* Chaque item */
.embarquer_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Image carrée avec coins arrondis */
.embarquer_item_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.embarquer_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.embarquer_item_image svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Effet hover sur les images */
.embarquer_item:hover .embarquer_item_image {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Texte sous l'image */
.embarquer_item_text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #514D40;
    margin: 0;
    max-width: 90%;
    word-break: keep-all;
    hyphens: none;
}

/* Responsive Styles */
@media (max-width: 1399px) {
    .section_title_eb {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .embarquer_items_grid {
        gap: 25px;
    }
    
    .embarquer_item_text {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .embarquer_items_grid {
        gap: 20px;
    }
    
    .embarquer_item_text {
        font-size: 15px;
    }
    
    .embarquer_item_image {
        margin-bottom: 16px;
    }
}

@media (max-width: 991px) {
    .embarquer_bellonie_section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .section_title_eb {
        font-size: 16px;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    /* 3 colonnes sur tablette */
    .embarquer_items_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .embarquer_item_text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .embarquer_bellonie_section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .section_title_eb {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    /* 2 colonnes sur mobile */
    .embarquer_items_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .embarquer_item_image {
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .embarquer_item_text {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .section_title_eb {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    /* 1 colonne sur petit mobile */
    .embarquer_items_grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .embarquer_item_text {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section_title_eb {
    animation: fadeInUp 0.6s ease-out;
}

.embarquer_item {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.embarquer_item:nth-child(1) {
    animation-delay: 0.1s;
}

.embarquer_item:nth-child(2) {
    animation-delay: 0.2s;
}

.embarquer_item:nth-child(3) {
    animation-delay: 0.3s;
}

.embarquer_item:nth-child(4) {
    animation-delay: 0.4s;
}

.embarquer_item:nth-child(5) {
    animation-delay: 0.5s;
}

