@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .search-bar-banner {
        position: relative !important;
        width: 60% !important;
        margin-top: 2rem;
    }
    .search-bar-banner .row {
        flex-direction: column;
    }
    .search-bar-banner .col-3,
    .search-bar-banner .col-7,
    .search-bar-banner .col-2 {
        width: 60%;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 321px) and (max-width: 425px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .search-bar-banner {
        position: relative !important;
        width: 90% !important;
        margin-top: 2rem;
    }
    .search-bar-banner .row {
        flex-direction: column;
    }
    .search-bar-banner .col-3,
    .search-bar-banner .col-7,
    .search-bar-banner .col-2 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .search-bar-banner {
        width: 85% !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .search-bar-banner {
        width: 80% !important;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .search-bar-banner {
        width: 60% !important;
    }
}

@media (min-width: 1441px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .search-bar-banner {
        width: 60% !important;
    }
}

.popular-places {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.place-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 3px solid orange;
    border-radius: 10px;
    padding: 50px 10px 10px;
    /* haut = plus grand pour laisser place au flag */
    width: 140px;
    /* largeur fixe unifiée pour tous */
    box-sizing: border-box;
    text-decoration: none;
    color: orange;
    font-weight: bold;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    height: auto;
    /*  ajuster à la hauteur du contenu */
}

.flag-icon {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
}


/* .carousel-item img { */


/*  impose un format fixe à l’image (par exemple : 400px de large → 500px de haut). */


/* aspect-ratio: 3 / 2; */


/* remplir complètement le cadre, sans la déformer. */


/* object-fit: cover; */


/* object-fit: contain;
    width: 100%;
    height: auto;
    border-radius: 8px;
 } */