/* ==========================================================
   RESTAURANT & HOTEL CARDS — v1.0
   Shared CSS · Burgundy (restaurant) + Navy/Gold (hotel)
   ========================================================== */

/* ══════════════════════════════════════════════════════
   RESTAURANT CARDS — Burgundy Palette
   ══════════════════════════════════════════════════════ */

/* ── Card ── */
.rc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,18,16,.07);
  transition: box-shadow .35s cubic-bezier(.25,.46,.45,.94),
              transform .35s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
}
.rc-card:hover {
  box-shadow: 0 16px 48px rgba(155,35,53,.12);
  transform: translateY(-6px);
}

/* ── Image ── */
.rc-card__thumb {
  display: block; position: relative;
  aspect-ratio: 82/52; overflow: hidden;
  background: #efe9e3; text-decoration: none;
}
.rc-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.rc-card:hover .rc-card__img { transform: scale(1.08); }
.rc-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #efe9e3; color: #d8cfc5;
}

/* ── Content ── */
.rc-card__content {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; flex: 1; gap: 8px;
}

/* ── Title ── */
.rc-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.rc-card__title a { color: #1a1210; text-decoration: none; transition: color .2s; }
.rc-card:hover .rc-card__title a { color: #9b2335; }

/* ── Location ── */
.rc-card__location {
  display: flex; align-items: center; gap: 5px;
  font-size: .84rem; color: #7a6e66;
}
.rc-card__location svg { color: #9b2335; flex-shrink: 0; }

/* ── Description ── */
.rc-card__desc {
  font-size: .84rem; color: #7a6e66; line-height: 1.55;
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Bottom ── */
.rc-card__bottom {
  display: flex; align-items: flex-end; justify-content: flex-end;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid #efe9e3;
}
.rc-card__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .85rem; font-weight: 600; color: #9b2335;
  text-decoration: none; padding: 6px 0;
  transition: color .2s, gap .25s;
}
.rc-card__cta:hover { color: #6e1a27; gap: 9px; }
.rc-card__cta svg { transition: transform .25s; }
.rc-card:hover .rc-card__cta svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════
   HOTEL CARDS — Navy / Gold Palette
   ══════════════════════════════════════════════════════ */

/* ── Card ── */
.hc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(18,20,26,.07);
  transition: box-shadow .35s cubic-bezier(.25,.46,.45,.94),
              transform .35s cubic-bezier(.25,.46,.45,.94);
  display: flex; flex-direction: column;
}
.hc-card:hover {
  box-shadow: 0 16px 48px rgba(27,42,74,.14);
  transform: translateY(-6px);
}

/* ── Image ── */
.hc-card__thumb {
  display: block; position: relative;
  aspect-ratio: 82/52; overflow: hidden;
  background: #ebe7e0; text-decoration: none;
}
.hc-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.hc-card:hover .hc-card__img { transform: scale(1.08); }
.hc-card__no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #ebe7e0; color: #d5cfc5;
}

/* Star badge on image */
.hc-card__stars-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(27,42,74,.85); backdrop-filter: blur(6px);
  color: #b8952f; font-size: .7rem; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

/* ── Content ── */
.hc-card__content {
  padding: 16px 20px 20px;
  display: flex; flex-direction: column; flex: 1; gap: 8px;
}

/* ── Meta pills (emoji style like tour cards) ── */
.hc-card__meta {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.hc-card__pill {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .72rem; font-weight: 600; color: #6b6e7a;
  background: #f8f7f4; padding: 3px 10px;
  border-radius: 100px; white-space: nowrap;
}

/* ── Title ── */
.hc-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; line-height: 1.35; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.hc-card__title a { color: #12141a; text-decoration: none; transition: color .2s; }
.hc-card:hover .hc-card__title a { color: #1b2a4a; }

/* ── Location ── */
.hc-card__location {
  display: flex; align-items: center; gap: 5px;
  font-size: .84rem; color: #6b6e7a;
}
.hc-card__location svg { color: #1b2a4a; flex-shrink: 0; }

/* ── Pros summary ── */
.hc-card__pros {
  display: flex; flex-direction: column; gap: 3px;
}
.hc-card__pro-item {
  font-size: .78rem; color: #2e7d32; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}

/* ── Bottom ── */
.hc-card__bottom {
  display: flex; align-items: flex-end; justify-content: flex-end;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid #ebe7e0;
}
.hc-card__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .85rem; font-weight: 600; color: #1b2a4a;
  text-decoration: none; padding: 6px 0;
  transition: color .2s, gap .25s;
}
.hc-card__cta:hover { color: #0f1a32; gap: 9px; }
.hc-card__cta svg { transition: transform .25s; }
.hc-card:hover .hc-card__cta svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════
   GRID LAYOUTS (shared)
   ══════════════════════════════════════════════════════ */
.rc-cards-grid,
.hc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Section header (shared) */
.rc-section__header,
.hc-section__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.rc-section__title,
.hc-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; color: #12141a; margin: 0;
}
.rc-section__view-all {
  font-size: .85rem; font-weight: 600; color: #9b2335;
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  padding: 8px 18px; border: 1.5px solid #9b2335;
  border-radius: 100px; transition: background .22s, color .22s;
}
.rc-section__view-all:hover { background: #9b2335; color: #fff; }

.hc-section__view-all {
  font-size: .85rem; font-weight: 600; color: #1b2a4a;
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  padding: 8px 18px; border: 1.5px solid #1b2a4a;
  border-radius: 100px; transition: background .22s, color .22s;
}
.hc-section__view-all:hover { background: #1b2a4a; color: #fff; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .rc-cards-grid,
  .hc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rc-cards-grid,
  .hc-cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .rc-section__header,
  .hc-section__header {
    flex-direction: column; align-items: flex-start; gap: 12px;
  }
}
@media (max-width: 420px) {
  .rc-card__content,
  .hc-card__content { padding: 14px 16px 16px; }
  .rc-card__title,
  .hc-card__title { font-size: 1rem; }
}