/* =========================
   BARRE SUPÉRIEURE COULEURS
========================= */
.top-bar {
    display: flex;
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.top-bar div {
    flex: 1;
}

.color1 { background-color: #2f336c; }
.color2 { background-color: #d53b36; }
.color3 { background-color: #1aaaed; }

/* =========================
   GÉNÉRAL
========================= */
body {
    padding-top: 10px;
}

/* =========================
   CONTACT INFO
========================= */
.contact-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.contact-info i {
    margin-right: 10px;
}

/* =========================
   NAVBAR
========================= */
.navbar-custom {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    background-color: #f7f7f7;
}

.navbar-custom img {
    width: 195px;
    height: 133px;
}

.navbar-custom .navbar-nav {
    margin-left: auto;
}

.navbar-custom .nav-link {
    color: #000;
    margin-right: 20px;
    font-weight: bold;
}

/* =========================
   SLIDER
========================= */
.carousel-item img {
    width: 100%;
    height: auto;
}

/* TEXTE SUR LE SLIDER */
.carousel-caption {
    bottom: 20%;
    text-align: left;
}

.carousel-caption a {
    display: inline-block;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 20px 30px;
    font-size: 2.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.carousel-caption a:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-2px);
}

/* =========================
   BLOCS CONTENU
========================= */
.destination-block,
.hotel-block,
.omra-block {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.destination-block img,
.hotel-block img,
.omra-block img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* =========================
   TITRES
========================= */
.title-left {
    text-align: left;
    font-weight: bold;
}

/* =========================
   FOOTER
========================= */
.footer {
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.footer a {
    color: #000;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* =========================
   MODAL RGPD
========================= */
.modal-header {
    background-color: #007bff;
    color: white;
}

.modal-footer .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.destination-block {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 15px; /* <-- arrondi des cadres */
    transition: transform 0.3s ease; /* facultatif : effet au survol */
}

/* Effet au survol (optionnel) */
.destination-block:hover {
    transform: translateY(-5px);
}
.search-box {
    position: relative;
    padding: 30px 25px;
    border-radius: 15px;
    background: url('../images/hotel-bg.jpg') center/cover no-repeat; /* image de fond */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-bottom: 50px;
}

.search-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.25); /* overlay pour lisibilité */
    border-radius: 15px;
    z-index: 0;
}

.search-box form * {
    position: relative;
    z-index: 1; /* texte et champs au-dessus de l'overlay */
}

.search-box .form-control,
.search-box .form-select,
.search-box .btn {
    border-radius: 8px;
}
