/* Algemene stijl hotelkaart */
.hotel-card {
  display: flex;
  flex-wrap: wrap;
  background: #f7f4f1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto 1rem auto;
  font-family: system-ui, sans-serif;
}

/* Afbeelding */
.hotel-image {
  width: 100%;
  max-width: 280px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Info naast de afbeelding */
.hotel-info {
  flex: 1;
  min-width: 0;
  padding: 1.2rem 1.5rem;
  background: #fdfcfb;
}

/* Koptekst met naam en rating */
.hotel-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.hotel-name {
  margin: 0;
  flex: 1;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  word-break: break-word;
}

.stars {
  color: #f5a623;
  font-size: 1rem;
  margin-left: 0.4rem;
}

.hotel-rating {
  font-size: 0.85rem;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.rating-score {
  background: #003580;
  color: #fff;
  padding: 0.3rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 0.2rem;
}

/* Locatie en beschrijving */
.hotel-location {
  margin: 0.7rem 0;
  font-size: 0.95rem;
  color: #444;
}

.hotel-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.hotel-description p,
.hotel-description ul {
  margin-bottom: 10px;
}

.hotel-description ul {
  padding-left: 20px;
}

.hotel-description li {
  margin-bottom: 5px;
}

/* CTA-knoppen */
.hotel-cta {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hotel-cta .cta-button {
  flex: 1 1 0;
  text-align: center;
  text-decoration: none;
  background: #eee;
  padding: 0.5rem 1.2rem;
  color: #333;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.hotel-cta .cta-button:hover {
  background: #ddd;
}

.hotel-cta .cta-button.primary {
  background: #0071c2;
  color: #fff;
}

.hotel-cta .cta-button.primary:hover {
  background: #005fa3;
}

/* Mobiele weergave */
@media (max-width: 640px) {
  .hotel-card {
    flex-direction: column;
  }

  .hotel-image {
    width: 100%;
    max-width: 100%;
  }

  .hotel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hotel-rating {
    text-align: left;
  }

  .hotel-cta {
    flex-direction: column;
  }

  .hotel-cta .cta-button {
    width: 100%;
  }
}
