/* === STYLE LUXE ULTRA MINIMAL (Apple-like) === */

/* Conteneur général */
.search-bar-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
}

/* Forme du formulaire */
.search-bar {
    background: #ffffff;
    border-radius: 28px;
    padding: 1rem 1.4rem;
    max-width: 950px;
    width: 90%;
    border: 1px solid #e5e5e7; /* Apple ultra thin */
    box-shadow: 0 6px 20px rgba(0,0,0,0.06); /* ombre très douce */
    display: flex;
    align-items: center;
    transition: all 0.35s ease;
}

/* Labels Apple-like */
.search-bar label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #6e6e73; /* gris Apple typique */
    margin-bottom: 3px;
}

/* Inputs Apple macOS */
.search-bar input {
    background: #f5f5f7; /* gris Apple */
    border: 1px solid #d0d0d5; /* bord ultra light */
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.92rem;
    transition: all 0.22s ease-in-out;
}

.search-bar input:focus {
    border-color: #0d6efd;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(13,110,253,0.25);
    outline: none;
}

/* Groupe Adultes / Enfants */
#adultes, #enfants {
    width: 75px;
    text-align: center;
    font-weight: 500;
}

/* Bouton Style Apple */
.search-bar button {
    border-radius: 10px;
    background: #ffffff;
    color: #0d6efd;
    border: 1px solid #d0d0d5;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.search-bar button:hover {
    background: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13,110,253,0.28);
    transform: translateY(-1px);
}

/* Alignement vertical parfait (labels + inputs + bouton) */
.search-bar .col-auto {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bouton toujours verticalement centré */
.search-bar .col-auto.d-flex {
    justify-content: center !important;
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        padding: 1rem;
    }
    #adultes, #enfants {
        width: 60px;
    }
    .search-bar button {
        width: 100%;
        margin-top: 8px;
    }
}
