/* ================== BASE ================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

.title {
  text-align: center;
  margin: 25px 0 20px;
  font-size: 26px;
  font-weight: 700;
  color: #000080;
}

/* ================== GRID ================== */
.grid {
  max-width: 1250px;
  margin: 20px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 0 15px;
}

/* ================== CARTE ================== */
.card {
  width: 250px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Bannière */
.banner {
  position: relative;
  height: 105px;
  overflow: visible;
}

.banner img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  display: block;
}

/* Avatar rond - positionné en bas à gauche */
.avatar {
  position: absolute;
  bottom: -40px;
  left: 12px;
  z-index: 10;
}

.avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ================== RATING dans la bannière ================== */
.rating {
  position: absolute;
  bottom: 6px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  z-index: 10;
}

.rating .stars {
  display: flex;
  gap: 0px;
}

.rating i {
  font-size: 13px;
  color: #FFD600;
}

.rating .count {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  background: rgba(255,255,255,0.9);
  padding: 1px 4px;
  border-radius: 3px;
}

.rating .badge {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: #3366cc;
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 1px;
}

/* ================== CONTENU ================== */
.content {
  padding: 48px 12px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* ---- NOM ---- */
.name {
  font-size: 15px;
  font-weight: 600;
  color: #000080;
  margin: 0 0 2px;
}

/* ---- Catégorie ---- */
.category {
  font-size: 11px;
  font-weight: 400;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* ---- Description ---- */
.desc {
  font-size: 11px;
  color: #000080;
  margin: 0 0 8px;
  line-height: 1.35;
  height: 58px;
  overflow: hidden;
  text-align: center;
}

/* Hôtesse ID */
.host-id {
  font-size: 11px;
  font-weight: 600;
  color: #000080;
  margin: 0 0 8px;
}

/* CONTACT */
.contact {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: #03b300;
  display: flex;
  align-items: center;
  gap: 3px;
}

.contact a .mdi {
  font-size: 14px;
}

/* ================== CTA Bas ================== */
.cta {
  margin-top: auto;
  background: #03B300;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .25s ease;
}

.cta:hover {
  background: #029a00;
}

/* Occupée */
.cta.disabled {
  background: #FF8604 !important;
  cursor: default;
}

/* Bandeau tarif discret */
.price-info {
  text-align: center;
  font-size: 9px;
  color: #888;
  margin: 0;
  padding: 3px 0 5px;
  background: #f9f9f9;
}

/* ================== INTRO ================== */
.intro {
  max-width: 850px;
  margin: 0 auto 25px;
  padding: 0 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.intro p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-weight: 400;
}

/* ================== FAQ ================== */
.faq {
  max-width: 850px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.faq h2 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #000080;
  display: block;
}

.faq h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #333;
}

.faq p {
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.45;
}

/* H2 sous-titre grille */
h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #000080;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1100px) {
  .grid {
    gap: 15px;
  }
  .card {
    width: 240px;
  }
}

@media (max-width: 800px) {
  .card {
    width: calc(50% - 15px);
    min-width: 220px;
  }
}

@media (max-width: 500px) {
  .card {
    width: 100%;
    max-width: 280px;
  }
}
