/** ----------------------------------------
* Bannière Westfield et Onglet de navigation
* ---------------------------------------- **/



.entreprise-background {
    background-image: url(../assets/urw.jpg);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50vh;
    object-fit:contain;
}

.tab-navigation {
    background-color: #575353;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    padding: 1rem;
    display: none;
}

.tab-navigation>h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #F5DEB3;
}


/** ----------------------------------------
* A propos de URW
* ---------------------------------------- **/

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-entreprise {
    width: 500px;
    height: auto;
}



.icon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.icon-container {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 15px;
    margin: 5px;
    transition: background-color 0.3s;
    min-width: 150px; /* Largeur minimale */
    width: auto; /* Largeur automatique */
    height: 150px; /* Hauteur fixe */
    display: flex; /* Utiliser Flexbox */
    flex-direction: column; /* Organiser le contenu verticalement */
    justify-content: center; /* Centrer le contenu verticalement */
    align-items: center; /* Centrer le contenu horizontalement */
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.icon-container i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #9c2f2f; 
    transition: color 0.3s; 
}

.icon-container:hover i {
    color: #F5DEB3; 
}

.icon-container:hover {
    background-color: rgba(0, 0, 0, 0.4); 
}


.map-section {
    margin-top: 40px;
    text-align: center;
}

.map-container {
    margin: 0 auto;
    max-width: 80%;
    height: 480px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}


/** ----------------------------------------
* Organigramme 
* ---------------------------------------- **/

.organigramme-img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1rem auto;
    object-fit: contain;
}

.organigramme-img-si {
    display: block;
    width: 85%;
    max-width: 100%;
    height: 1000px;
    margin: 1rem auto;
    object-fit: contain;
}


/** ----------------------------------------
* Network
* ---------------------------------------- **/

.network-logic-img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1rem auto;
    object-fit: contain;
}

/** ----------------------------------------
* Missions
* ---------------------------------------- **/



.mission-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
    border-radius: 2px;
}

.mission-item {
    width: calc(33.33% - 20px);
    background-color: #4d575f;
    color: white;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Aligne le texte en bas du conteneur */
}

.mission-content img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10%; 
}


