/* ==========================================================
   VENUE CARDS
   ========================================================== */

.venuesSection {
	margin:auto;width:calc(100vw - 2rem);
 max-width:1800px;padding-top:2rem;
}

.venuesHeader {
 
  text-align: center;
}

.venuesHeader h2 {
  margin-bottom: 0.75rem;
}

.venuesIntro {
  max-width: 750px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  padding-bottom:2rem;
}

/* Remove scrolling behaviour: this version uses a grid. */
.venuesScroller {
  width: 100%;
  overflow: visible;
}

.venuesGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

/* ==========================================================
   INDIVIDUAL CARD
   ========================================================== */

.venueCard {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;

  background: var(--white, #fff);
  color: var(--black, #181818);

  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;

  box-shadow:
	0 4px 12px rgba(0, 0, 0, 0.06),
	0 14px 30px rgba(0, 0, 0, 0.08);

  transition:
	transform 180ms ease,
	box-shadow 180ms ease;
}

.venueCard:hover {
  transform: translateY(-4px);

  box-shadow:
	0 7px 18px rgba(0, 0, 0, 0.08),
	0 20px 42px rgba(0, 0, 0, 0.12);
}
.venueCard {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.venueCardBody {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.venueCardReview {
	display: flex;
	flex-direction: column;
	flex: 1;
}
/* ==========================================================
   CARD IMAGE
   ========================================================== */

.venueCardImage {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #222;
}

.venueCardImage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 300ms ease;
}

.venueCard:hover .venueCardImage img {
  transform: scale(1.025);
}

/* ==========================================================
   CARD CONTENT
   ========================================================== */

.venueCardBody {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding:1rem;
}

.venueCardTitle {
  margin: 0 0 0.5rem;
  color: var(--black, #181818);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.2;max-width:100%
}

.venueCardMeta {
  margin: 0 0 1rem;

  color: var(--h2, #9a6d18);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase; text-align: center;
}

.venueCardDescription {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================
   CUSTOMER COMMENT
   ========================================================== */
.venueCardReviewTitle {color:var(--black)}
.venueCardReview {
  position: relative;
  margin: 0rem 0 0;
  padding: 1.25rem;

  background: rgba(0, 0, 0, 0.045);
  border-left: 4px solid #b6872f;
  border-radius: 0 10px 10px 0;
}

.venueCardReview::before {
  content: "★★★★★ Client feedback";
  display: block;
  margin-bottom: 0.6rem;

  color:  #b6872f;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.venueCardReview p {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
}

.venueCardReview footer {
  margin-top: auto;background:none;
}


.venueCardReview cite {
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.venueCardReview cite span {
  font-weight: 400;
  opacity: 0.7;
}

/* ==========================================================
   OPTIONAL VENUE LINK
   ========================================================== */

.venueCardLink {
  margin: auto 0 0;
  padding-top: 1.5rem;
}

.venueCardLink a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;

  color: var(--black, #181818);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--h2, #b6872f);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.venueCardLink a:hover {
  color: var(--h2, #8b651e);
}

/* ==========================================================
   RESPONSIVE GRID
   ========================================================== */

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

@media (max-width: 640px) {
  .venuesGrid {
	grid-template-columns: 1fr;
  }

  .venueCard {
	border-radius: 12px;
  }

  .venueCardBody {
	padding: 1.25rem;
  }
}

/* ==========================================================
   KEYBOARD AND ACCESSIBILITY
   ========================================================== */

.venuesScroller:focus {
  outline: none;
}

.venueCardLink a:focus-visible {
  outline: 3px solid var(--h2, #b6872f);
  outline-offset: 5px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .venueCard,
  .venueCardImage img {
	transition: none;
  }

  .venueCard:hover,
  .venueCard:hover .venueCardImage img {
	transform: none;
  }
}
/* ==========================================================
   VENUE FACTS
   ========================================================== */

.venueCardFacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;

  margin: 0 0 1.25rem;
  padding: 0;
}

.venueCardFact {
  padding: 0.85rem 1rem;

  background: rgba(0, 0, 0, 0.045);
  border-radius: 9px;
}

.venueCardFact dt {
  margin: 0 0 0.25rem;

  color: #9a6d18;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venueCardFact dd {
  margin: 0;

  color: var(--black, #181818);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.venueCardFact a {
  color: inherit;
  text-decoration-color: var(--h2, #9a6d18);
  text-underline-offset: 3px;
}

@media (max-width: 420px) {
  .venueCardFacts {
	grid-template-columns: 1fr;
  }
}