/* Réinitialisation globale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #0c0c0c;
    background: #ffffff;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

p {
    line-height: 1.6;
}

/* HEADER - Mise en page en flex pour mobile */
.header_section {
    background-color: #f1c40f; /* Jaune */
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.header_top {
    background-color: #92d050; /* Vert */
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1200px;
}

.contact_info span {
    font-size: 1em;
    color: black;
}

.header_bottom {
    background-color: #f1c40f; /* Jaune */
    width: 100%;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: none;
}

.navbar-toggler {
    border: none;
    background: none;
}

.navbar-collapse {
    background-color: #f1c40f; /* Jaune */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.left-nav {
    justify-content: flex-start;
}

.right-nav {
    justify-content: flex-end;
}

.navbar-nav .nav-item {
    margin: 5px;
}

.navbar-nav .nav-item .nav-link {
    color: black;
    font-size: 1em;
    padding: 10px 15px;
    transition: background 0.3s;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.navbar-nav .nav-item .nav-link:hover {
    background-color: #f39c12;
    color: white;
}

.center-logo {
    position: absolute;
    top: -30px; /* Remonter le logo */
    left: 50%;
    transform: translateX(-50%);
}

/* Réseaux sociaux */
.social_links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.social_links a {
    color: white;
    font-size: 1.125em;
    transition: color 0.3s;
}

.social_links a:hover {
    color: #f1c40f;
}

/* Footer */
.footer_section {
    background-color: #e74c3c;
    border-top: 2px solid #0c0c0c;
    text-align: center;
    padding: 30px 0;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin: 5px 0;
}

.footer_links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer_links a:hover {
    color: #f1c40f;
}

/* Styles pour la section "FAITES UN DON", "NOTRE ÉQUIPE", "NOS ACTIONS" */
.action_section {
    padding: 30px 0;
    text-align: center;
}

.action_section .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.action_section .col-md-4 {
    padding: 20px;
}

.action_section .btn {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 10px; /* Ajout du border-radius */
    border: none;
    cursor: pointer;
    color: white; /* Ajout de la couleur du texte */
    font-weight: bold; /* Ajout du texte en gras */
}

.action_section .btn-don {
    background-color: #007bff; /* Bleu */
}

.action_section .btn-equipe {
    background-color: #28a745; /* Vert */
}

.action_section .btn-actions {
    background-color: #dc3545; /* Rouge */
}

/* Styles pour la vidéo dans le cadre du téléphone */
.video_section .video-container {
    position: relative;
    width: 300px;
    margin: 20px auto;
}

.video_section .phone-frame {
    width: 100%;
    display: block;
}

.video_section .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
}

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

    .contact_info {
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
}