/* Full-screen image sections */
.trails-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh; /* better on mobile */
  overflow: clip;
  background: #000;
}

.trails-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 */
.trails-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;
  
}

.trails-hero-content h1,
.trails-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;
}


.trails-hero-content p {
  max-width: 40rem;
  font-size: clamp(1.0rem, 1.9vw, 1.4rem); /* bigger paragraph on image */
  line-height: 1.6;
 
}
.trails-hero-content p1 {
  max-width: 40rem;
  font-size: clamp(1.25rem, 2.25vw, 1.65rem); /* 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;
}
.trails-content-block {
  /* 70% of viewport width, but never wider than 960px */
  width: min(70vw, 960px);
  margin: 30px auto;
  padding: clamp(2.5rem, 4vw, 4rem) 3vw;
  color: #fff;
  text-align: center;
  position: relative;
}
.trails-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 */
.trails-content-block::before,
.trails-content-block::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(160px, 60%);
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.trails-content-block::before {
  top: 1.2rem;
}

.trails-content-block::after {
  bottom: 1.2rem;
}

.trails-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;
}

.trails-content-block[id] {
  scroll-margin-top: 100vh; /* tweak to taste */
}


/* Optional: on small screens let it go full width */
@media (max-width: 768px) {
  .trails-content-block {
    width: 100%;
    padding-inline: 7vw;
  }
}


.golf-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) {
  .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;
}
/* Golf Highlight Section */
.trails-golf-highlight {
  width: min(70vw, 960px);
  margin: 4rem auto;
  padding: clamp(2.75rem, 4vw, 3.5rem);
  background: rgba(0, 0, 0, 0.40);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle top accent line */
.trails-golf-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0)
  );
}

.trails-golf-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

.trails-golf-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem clamp(2rem, 4vw, 3rem);
  margin-bottom: 2.25rem;
}

.trails-golf-col h3 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.trails-golf-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trails-golf-col li {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* small dot-like marker to keep things elegant */
.trails-golf-col li::before {
  content: "•";
  margin-right: 0.5rem;
  opacity: 0.7;
}

.trails-golf-line {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.trails-golf-cta {
  margin-top: 1.25rem;
  text-align: center;
}

.trails-golf-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;
}

.trails-golf-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  background: #f5f5f5;
}


/* Optional: center text on smaller screens and stack columns */
@media (max-width: 768px) {
  .trails-golf-highlight {
    padding-inline: 7vw;
  }

  .trails-golf-columns {
    grid-template-columns: 1fr;
  }

  .trails-golf-highlight,
  .trails-golf-col {
    text-align: left;
  }
}

/* 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 {
  margin-top:25px;
  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;
}
