/* Style corrigé pour le breadcrumb */
.breadcrumb-custom {
    padding: 0 20px; /* Ajout de padding latéral */
    max-width: 1200px; /* Largeur maximale comme le container */
    margin: 20px auto 15px; /* Centrage et marges */
}

.breadcrumb {
    padding: 10px 15px; /* Padding intérieur réduit */
    background-color: var(--light-gray);
    border-radius: 6px; /* Coins légèrement arrondis */
    margin: 0; /* Reset de la marge */
    font-size: 0.9rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.cards-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-description {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 12px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

/*.card-link:hover {
    color: #0056b3;
}*/



.card-link:hover::after {
    transform: translateX(2px);
}

/* Placeholder images */
.placeholder-image {
    width: 100px;
    height: 70px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    text-align: center;
    flex-shrink: 0;
}

.bio-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.speech-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.history-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.star-icon {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.benin-accent {
    height: 2px;
    background: linear-gradient(90deg, #00a86b 0%, #ffd700 50%, #dc143c 100%);
    margin-bottom: 15px;
    border-radius: 1px;
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
        text-align: center;
    }

    .card-image,
    .placeholder-image {
        width: 100%;
        height: 100px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.8rem;
    }
}

.breadcrumb {
    background-color: #e9ecef;
    padding: 10px 0;
    margin-bottom: 30px; /* Augmenté de 20px à 30px */
}

.main-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
    margin-top: 15px; /* Nouvelle propriété ajoutée */
}

.breadcrumb-content {
    max-width: 1000px;
    margin: 0;
    padding: 0 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6c757d;
}

.breadcrumb-nav a {
    color: #007bff;
    text-decoration: none;
    margin-right: 8px;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: #adb5bd;
    font-size: 10px;
}

.breadcrumb-nav .current {
    color: #495057;
    font-weight: 500;
}


.content-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 15px;
}

.highlight {
    font-weight: 600;
    color: #2c3e50;
}

.role-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
    margin-top: 15px;
}

.image-container {
    width: 100%;
    max-width: 700px;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.military-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-align: center;
}

.benin-colors {
    background: linear-gradient(90deg, #00a86b 0%, #ffd700 50%, #dc143c 100%);
    height: 3px;
    margin: 15px 0;
    border-radius: 1px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .content-section {
        padding: 15px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .breadcrumb-nav {
        font-size: 11px;
    }
}
.history-placeholder {
    height: 180px;
    background-color: #fff8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e67e22;
}

.placeholder-content {
    padding: 1rem;
}

.star-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.2rem;
}

/*.card-link {
    color: #d35400;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}*/

.card-link:hover {
    text-decoration: underline;
}

.card-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.card-link:hover::after {
    transform: translateX(3px);
}
.image-placeholder {
    width: 100%;
    height: 300px; /* Ajustez selon vos besoins */
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Style pour le texte de remplacement */
.image-placeholder > div {
    padding: 20px;
}