/* ─── BOOKING PAGE ───────────────────────────── */

.booking-header {
  text-align: center;
  padding: 60px 24px 30px;
  background: #000000;
}
.booking-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.booking-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

/* ─── FILTRE ─────────────────────────────────── */
.booking-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 48px 80px;
}

.filter-bar {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 50px;
  background: rgba(0,0,0,0.4);
}

.filter-btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.18);
  padding: 11px 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { background: rgba(255,255,255,0.12); color: #FFFFFF; }
.filter-btn.active {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

/* ─── GRIY PWOFIL ────────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}

.profile-card {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, border-color 0.2s;
}
.profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.5);
}
.profile-card.hidden { display: none; }

.profile-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #222;
}
.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.12);
}

.profile-info { text-align: center; margin-bottom: 14px; }

.profile-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 5px;
}

.profile-tag {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn-book {
  display: inline-block;
  background: #000000;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 50px;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-book:hover { background: #FFFFFF; color: #000000; }

/* ─── KAT PWOFIL REYÈL (Firebase) ──────────────── */
.profile-realname {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 6px;
}
.profile-bio {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  line-height: 1.5;
}
.profile-price {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-top: 5px;
}
.profile-card-real .profile-img-wrap {
  border: 1.5px solid rgba(255,255,255,0.2);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .booking-section { padding: 20px 20px 60px; }
  .filter-bar { flex-wrap: wrap; border-radius: 16px; width: 100%; }
  .filter-btn { flex: 1; text-align: center; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .filter-btn:last-child { border-bottom: none; }
}
