.txt-black {color:black !important;}
.btn-register {height:50px !important;background-color: #121213!important;color:orange}
.btn-register:hover {color:white !important}
.card {
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #ff6200, #ff8c42);
}

.fade-card {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.show-card {
    opacity: 1 !important;
}
.card {
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5566d3, #5a3ca0);
}
#resetFilter {
    transition: background-color 0.3s, color 0.3s;
}

#resetFilter:hover {
    background-color:#ff6200!important;
    border-color: #ff6200 !important;
    color: white !important;
}
#searchBtn {
    background-color: #ff6200;
    border-color: #ff6200;
    color: white;
    transition: background-color 0.3s, border-color 0.3s;
}

#searchBtn:hover {
    background-color: #e65a00; /* un peu plus foncé au hover */
    border-color: #e65a00;
}
.badge-gov {background-color:#ff6200 ;}
.badge-arr {background-color:#111010 ;}
.icon-orange {
    color: #ff6200;
}
.txt-gras {font-weight: bold;}
.txt-orange {color:#ff6200; }

.img-carousel {
    height: 320px;
    object-fit: cover;
}
.rating-container {
  width: 300px; /* ajustable */
  font-family: Arial, sans-serif;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.rating-label {
  width: 40px;
}

.rating-bar {
  flex: 1;
  height: 12px;
  background: #eee;
  border-radius: 6px;
  margin: 0 10px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #ff6200; /* couleur indicateur */
  border-radius: 6px 0 0 6px;
}

.rating-percent {
  width: 40px;
  text-align: right;
}
.btn-review {
    background-color: #e65a00;   /* couleur de fond */
    color: white;               /* couleur du texte */
    border: none;               /* retirer la bordure par défaut */
    border-radius: 20px;        /* arrondir les coins */
    padding: 10px 20px;         /* espace à l’intérieur du bouton */
    font-size: 16px;            /* taille du texte */
    cursor: pointer;            /* curseur pointer au survol */
    transition: background 0.3s ease; /* effet au survol */
}

.btn-review:hover {
    background-color: darkorange; /* couleur au survol */
}
.review {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.review-stars {
    color: #ff6200; /* couleur dorée pour les étoiles */
}

.review-date {
    font-size: 12px;
    color: #888;
}

.review-body {
    font-size: 15px;
    line-height: 1.4;
}


#star-rating .star {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    margin-right: 5px;
}

#star-rating .star.selected {
    color: #f5b301; /* doré */
}

@media (max-width: 768px) {
    .img-carousel {
        height: 220px;
    }
}
.a {color:#fff !important}
.txt-white {color:#fff}

/* ===== TOP BAR ===== */
.wrap {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #fff; /* ligne blanche */
    padding: 20px 0; /* hauteur par défaut (mobile) */

}

.wrap p {
    margin: 0;
}

.wrap a {
    color: #fff;
    text-decoration: none;
}

.wrap a:hover {
    color: #ff6200;
}

/* Boutons top bar */
.btn-register {
    background-color: #ff6200;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    padding: 6px 12px;
    border: none;
}

.btn-register:hover {
    background-color: #e55600;
    color: #fff;
}

/* ===== NAVBAR ===== */
#ftco-navbar {
    background-color: #ff6200 !important;
    border-top: 1px solid #fff; /* ligne blanche entre wrap et navbar */
    margin-top: 20px;
}

#ftco-navbar .navbar-brand,
#ftco-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
}

#ftco-navbar .nav-link:hover,
#ftco-navbar .nav-item.active .nav-link {
    color: #000 !important;
}

/* Dropdown */
.dropdown-menu {
    background-color: #ff6200;
    border: none;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item:hover {
    background-color: #000;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .wrap {
        text-align: center;
    }

    .btn-register {
        width: 100%;
    }
}
/* Mobile */
@media (max-width: 767.98px) {
    #ftco-navbar {
        margin-top: 0;
    }
}




