/* ─── Resort card ──────────────────────────────────────────────────── */
.resort-card {
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

/* ─── Hero banner ──────────────────────────────────────────────────── */
.resort-hero {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.sheraton-hero {
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?fit=crop&w=1200&q=80');
}
.intercontinental-hero {
  background-image: url('https://images.unsplash.com/photo-1540541338537-1220059dddf3?fit=crop&w=1200&q=80');
}
.resort-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,74,110,.85) 0%, rgba(12,74,110,.2) 60%, transparent 100%);
}
.resort-hero-content {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  color: var(--white);
}
.resort-stay-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}
.resort-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.resort-location {
  font-size: .9rem;
  opacity: .85;
}

/* ─── Body ─────────────────────────────────────────────────────────── */
.resort-body {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ─── Dates row ────────────────────────────────────────────────────── */
.resort-dates-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.resort-date-block { text-align: center; }
.resort-date-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.resort-date-value {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ocean-dk);
  margin-bottom: 2px;
}
.resort-date-note {
  display: block;
  font-size: .78rem;
  color: var(--gray-400);
  font-style: italic;
}
.resort-date-arrow {
  font-size: 1.25rem;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* ─── Info grid ────────────────────────────────────────────────────── */
.resort-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.resort-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

/* ─── Detail list ──────────────────────────────────────────────────── */
.resort-detail-list { display: flex; flex-direction: column; gap: 10px; }
.resort-detail {
  display: flex;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.4;
  align-items: flex-start;
}
.detail-icon { flex-shrink: 0; font-size: 1rem; }
.detail-link {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
}
.detail-link:hover { text-decoration: underline; }

/* ─── Booking fields ───────────────────────────────────────────────── */
.resort-booking-fields { display: flex; flex-direction: column; gap: 12px; }
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}
.booking-field-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.booking-field-value {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
}
.booking-field-value.placeholder { color: var(--gray-400); font-style: italic; font-weight: 400; }

/* ─── Amenity tags ─────────────────────────────────────────────────── */
.amenity-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-tag {
  background: var(--ocean-lt);
  color: var(--ocean-dk);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}

/* ─── Events list ──────────────────────────────────────────────────── */
.resort-event-list { display: flex; flex-direction: column; gap: 8px; }
.resort-event {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-600);
}
.resort-event-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.resort-event-dot.travel   { background: var(--ocean); }
.resort-event-dot.activity { background: var(--coral); }
.resort-event-dot.amber    { background: var(--gold); }
.resort-event-date {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-400);
  min-width: 36px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.resort-event-name { color: var(--gray-700); }

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .resort-info-grid { grid-template-columns: 1fr; }
  .resort-body { padding: 20px; }
  .resort-dates-row { gap: 12px; justify-content: center; }
  .resort-date-arrow { display: none; }
}
