.mynavbar {
    background-color: #000 !important;
    border-top: 4px solid #fc0;
    border-bottom: 0;
    margin: 0 !important;
    padding: 8px 0 !important;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Groupe logo + menu */
.mynavbar .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Logo */
.mynavbar .navbar3 {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    color: #fc0 !important;
    font-weight: bold !important;
}

.mynavbar .navbar3 img {
    display: block;
    width: 60px;
    height: 60px;
}

/* Menu */
.mynavbar .navbar-menu {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* Liens */
.mynavbar .navbar-menu .nav-link {
    display: block;
    color: #fff !important;
    font-weight: bold !important;
    text-decoration: none;
    padding: 8px 6px !important;
    margin: 0 !important;
    white-space: nowrap;
}

.mynavbar .navbar-menu .nav-link:hover,
.mynavbar .navbar-menu .nav-link:focus,
.mynavbar .navbar-menu .nav-link:active,
.mynavbar .navbar-menu .nav-link.active {
    color: #fc0 !important;
}


/* =========================
   SMARTPHONE
   ========================= */

@media (max-width: 576px) {

    .mynavbar {
        padding: 5px 0 !important;
    }

    .mynavbar .container-fluid {
        justify-content: center;
        padding: 0 3px;
    }

    .mynavbar .navbar3 img {
        width: 45px;
        height: 45px;
    }

    .mynavbar .navbar-menu {
        display: flex !important;
        flex: none;
        overflow-x: auto;
        scrollbar-width: none;
        max-width: calc(100vw - 50px);
    }

    .mynavbar .navbar-menu::-webkit-scrollbar {
        display: none;
    }

    .mynavbar .navbar-menu .nav-link {
        font-size: 13px !important;
        padding: 6px 3px !important;
    }
}

/* Le contenu ne passe pas sous la navbar */
body {
    padding-top: 79px;
}


.footer-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.myfooter {
    width: 100%;
    background-color: #000 !important;
    color: #fa0 !important;
    padding: 10px 0;
    margin: 0;
}

/* Logo + texte TOUJOURS côte à côte */
.footer-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Logo */
.footer-logo {
    flex: 0 0 auto;
    width: 95px;
    height: 95px;
}

.footer-logo img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
}

/* Texte : 50px après le logo */
.footer-text {
    flex: 0 0 auto;
    margin-left: 50px !important;
    text-align: center;
}

.footer-text a {
    color: white !important;
    text-decoration: none;
}

.footer-text strong {
    display: block;
    color: #fa0;
    margin-bottom: 5px;
}

.footer-text small {
    display: block;
    color: white;
    line-height: 1.5;
}

/* Smartphone : toujours côte à côte */
@media (max-width: 576px) {

    .footer-content {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .footer-logo img {
        width: 70px;
        height: 70px;
    }

    .footer-text {
        margin-left: 50px !important;
    }

    .footer-text small {
        font-size: 11px;
    }
}