.navbar {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(50, 50, 50, 0.9);
    top: 0;
    width: 100%;
    z-index: 999;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.nav-left {
    margin-left: 5%;
}

/* Nouveau menu déroulant pour sélectionner French.gg ou Discord */
.nav-logo-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    user-select: none;
}

.nav-logo-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #222;
    border-radius: 5px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    font-weight: bold;
    width: 160px;
    justify-content: space-between;
}

.nav-logo-btn img {
    height: 24px;
    width: 24px;
}

.nav-logo-btn span {
    font-size: 16px;
}

.dropdown-arrow {
    font-size: 12px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #222;
    top: 100%;
    left: 0;
    min-width: 160px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 1000;
    text-align: left;
}

.dropdown-content a {
    display: flex;
    justify-content: left;
    align-items: center;
    gap:10px;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-content img {
    width: 20px;
    height: 20px;
}

.dropdown-content a:hover {
    background: #444;
}

/* Affichage du menu au hover */
.nav-logo-dropdown:hover .dropdown-content {
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    user-select: none;
}

.nav-item:hover {
    color: #ccc;
}

.beta {
    color: #fff;
    font-weight: bold;
    margin-bottom: 11px;
}

.ambassador {
    color: #e6d079;
    font-weight: bold;
}

.partner {
    color: #54a7df;
    font-weight: bold;
}

/* Icônes dans la navbar */
.beta-icon {
    height: 25px;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    width: 24px;
}

/* Nav Bar Mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: #222;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #ffcc00;
}

/* Responsive */
@media screen and (max-width: 860px) {
    body {
        overflow-x: hidden;
    }

    .navbar {
        align-items: flex-start;
        padding: 15px 0%;
        gap: 5px;
        height: auto;
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        width: 100%;
        max-width: 100vw;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(30, 30, 30, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        max-width: 100vw;
        padding: 15px 0;
    }

    .nav-links.active {
        display: flex;
        z-index: 2;
        align-items: flex-start;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .nav-left {
        margin-left: 2px;
    }

    .nav-toggle {
        padding-left: 3%;
        display: block;
        user-select: none;
    }

    .nav-logo-dropdown {
        margin-left: auto;
    }

    .dropdown-menu {
        position: static;
    }

    .nav-item {
        margin-left: 10px;
    }
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    padding: 30px 7%;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.footer-logo img {
    width: 100px; 
    user-select: none;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    width: 30%;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid #e66e6e;
    display: inline-block;
    padding-bottom: 5px;
    user-select: none;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e66e6e;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-bottom img {
    width: 50px;
    margin-bottom: 5px;
    user-select: none;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
    text-align: center;
    max-width: 100%;
}

@media screen and (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap:0;
    }

    .footer-columns {
        flex-direction: column;
        width: 100%;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-logo img {
       display: none; 
    }
}