/* --- SECTION ACCOMPAGNEMENT 360° --- */
#organigramme {
    text-align: center;
    background: #f8f8f8;
}

.org-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.org-center {
    width: 180px;
    height: 180px;
    background: #c09e0d;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    font-family: 'Fredoka';
}

.org-pin {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #c09e0d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.org-pin i {
    font-size: 22px;
}

.org-line {
    width: 5px;
    height: 40px;
    background: #c09e0d;
    margin-bottom: 10px;
}

.org-manager {
    background: white;
    padding: 15px;
    width: 260px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #084165;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #c09e0d;
    margin-bottom: 30px;
    font-family: 'Fredoka';
}

.org-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin-top: -10px;
}

.org-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    font-family: 'Lora';
}

.org-card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: #c09e0d;
    opacity: 0.1;
    transform: rotate(45deg);
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.org-card i {
    font-size: 30px;
    color: #c09e0d;
    margin-bottom: 10px;
}

.org-card h4 {
    font-size: 18px;
    color: #084165;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Fredoka';
}

.org-card p {
    font-size: 16px;
    color: #555;
    font-family: 'Lora';
}

@media (max-width: 1024px) {
    .org-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .org-center {
        width: 150px;
        height: 150px;
    }

    .org-manager {
        width: 220px;
    }
}
