/* ==========================================================================
   Shuvatara — Modern Nearby Attractions
   Scoped under `sh-attraction` so it never collides with the legacy theme
   CSS. Renders as a static 3-column grid (no carousel).
   ========================================================================== */

/* `.attraction-area` is shared with #accommodation — scope the background
   to this section's own id so the two sections can alternate independently. */
#nearby {
  background: #fbf9f5;
}

.sh-attractions__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.sh-attractions__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold, #d4af6a);
  margin-bottom: 14px;
}

.sh-attractions__eyebrow::before,
.sh-attractions__eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--sh-gold, #d4af6a);
}

.sh-attractions__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 14px;
}

.sh-attractions__lead {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #5c6470;
  margin: 0;
}

.sh-attractions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.sh-attraction {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 20, 32, .07);
  box-shadow: 0 20px 40px -28px rgba(11, 20, 32, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sh-attraction:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -24px rgba(11, 20, 32, .35);
}

.sh-attraction__media {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.sh-attraction__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sh-attraction:hover .sh-attraction__media img { transform: scale(1.08); }

.sh-attraction__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sh-gold-light, #f1dfb5), var(--sh-gold, #d4af6a));
  color: #241a05;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(212, 175, 106, .4);
}

.sh-attraction__body { padding: 20px 20px 24px; }

.sh-attraction__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--sh-navy, #0b1420);
  margin-bottom: 8px;
}

.sh-attraction__desc {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #7c8492;
  margin: 0;
}

@media (max-width: 991px) {
  .sh-attractions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .sh-attractions__grid { grid-template-columns: 1fr; gap: 20px; }
  .sh-attraction__media { height: 240px; }
}
