/* Page fiche hôtel (url-hotel.php) — mobile first, inspiré des grands sites de réservation */

.fh-hotel-page {
  --fh-hotel-accent: #0d3b66;
  --fh-hotel-accent-soft: #e8f0fa;
  --fh-hotel-gold: #f5a623;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.fh-hotel-page__breadcrumb .breadcrumb {
  --bs-breadcrumb-divider: "›";
  font-size: 0.8125rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.fh-hotel-page__breadcrumb .breadcrumb-item a {
  color: var(--fh-hotel-accent);
  text-decoration: none;
}

.fh-hotel-page__breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Bloc principal fiche (pleine largeur, sans colonne réservation) */
.fh-hotel-sheet {
  border-color: rgba(13, 59, 102, 0.08) !important;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.fh-hotel-page__header {
  margin-top: -0.15rem;
}

.fh-hotel-btn-book {
  background: linear-gradient(135deg, #0d3b66 0%, #1e5f8a 100%);
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
}

.fh-hotel-btn-book:hover {
  filter: brightness(1.06);
  color: #fff;
}

.fh-hotel-gallery__hero {
  border-radius: 1rem;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.fh-hotel-gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

@media (min-width: 768px) {
  .fh-hotel-gallery__hero {
    min-height: 320px;
  }
}

.fh-hotel-gallery__thumb {
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.fh-hotel-gallery__thumb:hover {
  border-color: var(--fh-hotel-accent);
}

.fh-hotel-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-hotel-gallery__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  pointer-events: none;
}

.fh-hotel-score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem 0.5rem 0.5rem 0.15rem;
  background: var(--fh-hotel-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.fh-hotel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--fh-hotel-accent-soft);
  color: var(--fh-hotel-accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.fh-hotel-tabs .nav-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  border-bottom: 1px solid #e2e8f0;
  gap: 0.25rem;
}

.fh-hotel-tabs .nav-tabs .nav-link {
  white-space: nowrap;
  border: none;
  border-radius: 0.5rem 0.5rem 0 0;
  color: #64748b;
  font-weight: 600;
  padding: 0.65rem 1rem;
}

.fh-hotel-tabs .nav-tabs .nav-link.active {
  color: var(--fh-hotel-accent);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-bottom-color: #fff;
}

.fh-hotel-tabs .tab-content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  padding: 1.25rem 1.35rem 1.5rem;
}

.fh-hotel-facility-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.fh-hotel-facility-list li {
  padding: 0.2rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.fh-hotel-facility-list li .fa-check {
  position: absolute;
  left: 0;
  color: #16a34a;
  font-size: 0.75rem;
  top: 0.45rem;
}

/* Barre réservation mobile */
.fh-hotel-mobile-bar {
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.12);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: #fff;
  border-top: 1px solid #e2e8f0;
  z-index: 1020;
}

body.fh-hotel-page-body {
  padding-bottom: 4.5rem;
}

@media (min-width: 992px) {
  body.fh-hotel-page-body {
    padding-bottom: 0;
  }

  .fh-hotel-mobile-bar {
    display: none !important;
  }
}

.fh-hotel-star {
  color: var(--fh-hotel-gold);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.fh-hotel-star--empty {
  color: #cbd5e1;
}
