.bandeau{
    width: 100%;
    max-width: 1500px;  /* largeur maximale (adaptable selon ton design) */
    margin: 0 auto;     /* centre le bandeau automatiquement */
    padding: 0 5%;      /* 5% de padding à droite et à gauche */
    display: flex;
    align-items: center;
    background-color: red;
    border-bottom-left-radius: 25px; /* Arrondi bas gauche */
    border-bottom-right-radius: 25px; /* Arrondi bas droit */
    margin-bottom: 0.5%;
}
.bandeau h1 {
    margin: 0;            /* enlève les marges automatiques du h1 */
    font-size: 50px;
    color: white;
    font-family: 'PantonBlack';
}
.bandeau .logo img{
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 60%; /* l'image ne dépassera jamais son conteneur */
    height: auto;    /* conserve les proportions */
    display: block;  /* enlève l'espace blanc en dessous de l'image */
}
.btn{
    background-color: rgba(255, 99, 71, 0);
    color: white;
}
.menu{
    background-color: rgb(61, 61, 61);
    width: 100%;
    max-width: 1500px;  /* largeur maximale (adaptable selon ton design) */
    margin: 0 auto;     /* centre le bandeau automatiquement */
    padding: 0 5%;      /* 5% de padding à droite et à gauche */
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.menu a{
    text-decoration: none;
}
.classicbtn {
    color: white;
    text-decoration: none;
}

.classicbtn:hover {
    color: white; /* Restaure la couleur de texte normale */
    text-decoration: none; /* Assure qu'il n'y a pas de soulignement au survol */
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin: 10px;
}

/* Bouton hamburger caché par défaut */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
}

/* Responsive : affichage du bouton hamburger */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1001;
    }

    nav.menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: rgb(61, 61, 61);
        padding: 20px;
        border-radius: 25px;
        width: 90%;
        margin: 60px auto 0;
    }

    nav.menu.open {
        display: flex;
    }

    .btn-group, .classicbtn {
        width: 100%;
        margin: 5px 0;
    }

    .btn-group .btn {
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background-color: rgb(80, 80, 80);
        padding: 5px;
        border-radius: 10px;
        width: 100%;
    }

    .btn-group.open .dropdown-menu {
        display: block;
    }
}
