/* Full-screen image sections */
.destination-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh; /* better on mobile */
  overflow: clip;
  background: #000;
  margin-bottom: 10px;
}

.destination-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text at the bottom of the image */
.destination-hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.5rem 5vw 3rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0));
}

.destination-hero-content h1,
.destination-hero-content h2 {
   font-family: "Cinzel Decorative", Georgia, serif; 
  font-size: clamp(2.4rem, 3vw, 3.2rem); /* bigger headings */
  margin-bottom: .5rem;
  letter-spacing: 0.04em;
}

.destination-hero-content p {
  max-width: 40rem;
  font-size: clamp(1.0rem, 1.9vw, 1.4rem); /* bigger paragraph on image */
  line-height: 1.6;
}
/* Text at the bottom of the image */
.trails-hero-content2 {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.5rem 5vw 3rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 65vh;
  
}
.trails-hero-content2 h1,
.trails-hero-content2 h2 {
    font-family: "Cinzel Decorative", Georgia, serif; 
  font-size: clamp(2.0rem, 2.5vw, 2.8rem); /* bigger headings */
  margin-bottom: .5rem;
  letter-spacing: 0.04em;
}


.trails-hero-content2 p {
  max-width: 40rem;
  font-size: clamp(1.0rem, 1.9vw, 1.4rem); /* bigger paragraph on image */
  line-height: 1.6;
 
}
.trails-hero-content2 p1 {
  max-width: 40rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem); /* bigger paragraph on image */
  line-height: 1.6;
  text-shadow: var(--text-outline);
  font-style: italic;
}
/* Text at the bottom of the image */
.hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.5rem 5vw 3rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0));
	/* Center text block */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 25vh;
}

.hero-content h1,
.hero-content h2 {
    font-family: "Cinzel Decorative", Georgia, serif; 
  font-size: clamp(2.0rem, 2.5vw, 2.8rem); /* bigger headings */
  margin-bottom: .5rem;
  letter-spacing: 0.04em;
}


.hero-content p {
  max-width: 40rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem); /* bigger paragraph on image */
  line-height: 1.6;
  text-shadow: var(--text-outline);
  font-style: italic;
	
}
.destination-content-block {
  /* 70% of viewport width, but never wider than 960px */
  width: min(50vw, 1920px);
  margin: 0 auto;
  
  padding: clamp(2.5rem, 4vw, 4rem) 3vw;
  color: #fff;
  text-align: center;
  position: relative;
}
.destination-content-block h1 {
   font-family: "Cinzel Decorative", Georgia, serif; 
  font-size: clamp(2.0rem, 2.5vw, 2.8rem); /* bigger headings */
  margin-bottom: .5rem;
  letter-spacing: 0.04em;
}
/* subtle divider lines above and below the copy */
.destination-content-block::before,
.destination-content-block::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(160px, 60%);
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.destination-content-block::before {
  top: 1.2rem;
}

.destination-content-block::after {
  bottom: 1.2rem;
}

.destination-content-block p {
  max-width: 100%;          /* use full 70% width */
  margin: 0 auto;
  line-height: 1.9;
  font-size: clamp(1.0rem, 1.9vw, 1.4rem);
  letter-spacing: 0.03em;
  text-align: center;
}

/* Optional: on small screens let it go full width */
@media (max-width: 768px) {
  .destination-content-block {
    width: 100%;
    padding-inline: 7vw;
  }
}


.destination-cards {
  display: grid;
  gap: 1.75rem;
  /* max 2 per row */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(80vw, 1100px);
  margin: 3rem auto;
}

/* 1 per row on smaller screens */
@media (max-width: 700px) {
  .destination-cards {
    grid-template-columns: 1fr;
  }
}

.destination-card a {
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,.65);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.destination-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  background: rgba(0,0,0,.8);
}

.destination-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.destination-card-body {
  padding: 1.25rem 1.5rem 1.4rem;
  text-align: left;
}

.destination-card-drive {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.35rem;
}

.destination-card-title {
  font-size: 1.25rem;
  line-height: 1.3;
}

/* Page background / layout for this section */
.trail-main {
  min-height: 60vh;
  padding: clamp(3rem, 8vh, 5rem) 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card container (matches “Your stay includes” look) */
.trail-card {
  background: rgba(25, 32, 39, .96);
  color: var(--text);
  max-width: 940px;
  width: 100%;
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 24px;
  box-shadow: 0 26px 60px var(--shadow);
  position: relative;
}

/* Heading */
.trail-card h2 {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.trail-card h2::after {
  content: "";
  display: block;
  width: 85%;
  height: 3px;
  margin-top: .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
}

/* Body copy */
.trail-card p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 60rem;
}

/* NEW: 2-column list layout */
.trail-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.5rem;
  row-gap: .35rem;
}

.trail-list li {
  /* keep things tight inside each column */
}

.trail-list p {
  margin: 0;
  max-width: none; /* override the card-wide max-width */
  color: var(--text-muted);
}

/* Inline paragraph links (one spot after each paragraph) */
.trail-text-link {
  display: inline-block;
  margin-top: .4rem;
  font-size: .9rem;
  color:#0ea5e9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trail-text-link:hover {
  opacity: .8;
}

/* CTA area */
.trail-card-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Pill button styled like “Enquire Today” */
.trail-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.8rem;
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
  border: 0;
  cursor: pointer;
  transition:
    transform var(--speed) ease,
    box-shadow var(--speed) ease,
    background var(--speed) ease;
}

.trail-map-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
}

.trail-map-button:active {
  transform: translateY(1px);
  box-shadow: 0 6px 12px rgba(0,0,0,.35);
}

/* Small-screen tweak */
@media (max-width: 600px) {
  .trail-card {
    padding: 2rem 1.5rem;
  }

  /* stack the list into one column on narrow screens */
  .trail-list {
    grid-template-columns: 1fr;
  }
}


.golf-cards {
  display: grid;
  gap: 1.75rem;
  /* max 2 per row */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(80vw, 1100px);
  margin: 1rem auto;
}

/* 1 per row on smaller screens */
@media (max-width: 700px) {
  .golf-cards {
    grid-template-columns: 1fr;
  }
}

.golf-card a {
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,.65);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.golf-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  background: rgba(0,0,0,.8);
}

.golf-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.golf-card-body {
  padding: 1.25rem 1.5rem 1.4rem;
  text-align: left;
}

.golf-card-drive {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.35rem;
}

.golf-card-title {
  font-size: 1.25rem;
  line-height: 1.3;
}
/* Families & Friends Card
   ======================== */

.families-card {
  padding: clamp(28px, 3vw, 40px) clamp(20px, 4vw, 40px);
  margin: clamp(8px, 1vw, 16px) auto;
  max-width: 1100px;
  color: var(--text);
  background: rgba(0,0,0,.40);
  border-radius: 18px;
  border: 1px solid var(--nav-border);
  box-shadow: 0 18px 40px var(--shadow);
  margin-bottom:50px;
}

.families-card-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.families-card-header {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.families-card-eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
}

.families-card h2 {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  margin-top: 6px;
  margin-bottom: 0;
}

.families-card-grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(18px, 2vw, 24px);
}

@media (min-width: 800px) {
  .families-card-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.families-card-block {
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255,255,255,.08);
}

.families-card-subtitle {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.families-card-intro {
  margin: 0 0 10px;
  font-size: .95rem;
  color: var(--text-muted);
}

/* Lists with custom bullets */
.families-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.families-card-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.families-card-list a{
  display: inline-block;
  margin-top: .4rem;
  font-size: 1.0rem;
  color:#0ea5e9;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-left:15px;
}
.families-card-list a:hover {
  opacity: .8;
}
.families-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  transform: translateY(0.15em);
  opacity: .9;
}

.families-card-footer {
  margin: clamp(20px, 2.6vw, 28px) auto 0; /* <-- centers the block */
  max-width: 50rem;                        /* keep your readable width */
  text-align: center;                      /* centers the text */
  font-size: .98rem;
  color: var(--text-muted);
  padding-inline: 12px;                    /* optional: nicer on mobile edges */
}


.gatherings-cta {
  margin-top: 1.25rem;
  text-align: center;
}

.gatherings-btn {
  display: inline-block;
  padding: 0.55rem 2.8rem;
  border-radius: 999px;
  background: #ffffff;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.gatherings-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  background: #f5f5f5;
}
