/* ============================================================
   VISIT PAGE — visit.html
============================================================ */

/* Slightly tighter section padding on inner pages */
.section { padding: 64px 0; }

/* ============================================================
   PAGE HERO
============================================================ */
.page-hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(74,184,232,.22) 0%, transparent 55%),
    radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 100% 100%, 150px 150px, 220px 220px;
  background-position: center, 20px 30px, 80px 70px;
  padding: 56px 20px 52px;
  color: #FFF;
}
.hero-inner-grid {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 700px) {
  .hero-inner-grid { flex-direction: row; align-items: center; gap: 48px; }
}
.hero-text { flex: 1; }
.page-hero-eyebrow { display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.page-hero-title   { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3rem); line-height: 1.1; margin-bottom: 14px; }
.page-hero-sub     { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.72); line-height: 1.65; margin-bottom: 20px; }
.hero-quick-facts  { display: flex; flex-direction: column; gap: 10px; }
.hqf-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.85);
}
.hqf-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.hqf-row a { color: var(--yellow); }
.hqf-row a:hover { text-decoration: underline; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

/* ============================================================
   EMBEDDED REELS (visit page videos)
============================================================ */
.videos-section {
  background-color: var(--navy-dark);
  background-image:
    radial-gradient(ellipse at 60% 0%, rgba(74,184,232,.15) 0%, transparent 55%),
    radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 100% 100%, 140px 140px, 210px 210px;
  background-position: center, 18px 36px, 85px 14px;
  padding: 64px 0;
}
.videos-section .eyebrow   { color: var(--yellow); }
.videos-section .sec-title { color: #FFF; }
.videos-section .sec-sub   { color: rgba(255,255,255,.68); }

.videos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (min-width: 960px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }

.reel-wrap  { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.reel-frame { display: block; width: 100%; height: 560px; border: none; }
@media (min-width: 600px) and (max-width: 959px) { .reel-frame { height: 700px; } }

/* Larger map on the dedicated visit page */
.location-map { height: 260px; }

/* ============================================================
   FIELD TRIPS & GROUP VISITS
============================================================ */
.ft-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
@media (min-width: 700px) { .ft-grid { grid-template-columns: repeat(3, 1fr); } }

.ft-card {
  background: var(--card-bg); border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border); text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ft-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ft-icon  { font-size: 2rem; margin-bottom: 12px; }
.ft-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--heading); margin-bottom: 8px; transition: color .3s; }
.ft-text  { font-size: .88rem; font-weight: 600; color: var(--text-2); line-height: 1.65; transition: color .3s; }

.ft-who { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.ft-tag {
  font-size: .82rem; font-weight: 800; padding: 7px 16px;
  background: var(--sky-light); color: var(--navy);
  border-radius: var(--radius-full); border: 1.5px solid var(--sky);
}

.ft-cta { text-align: center; }

/* ============================================================
   OPEN PLAY FAQ (accordion — matches parties page styling)
============================================================ */
:root {
  --accordion-border: #E0D8CE;
  --accordion-hover:  #F9F6F1;
}
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1.5px solid var(--accordion-border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 10px; background: var(--card-bg);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover      { box-shadow: var(--shadow-sm); }
.faq-item[open]      { box-shadow: var(--shadow-md); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; cursor: pointer;
  font-weight: 800; font-size: .95rem; color: var(--text-1);
  line-height: 1.4; list-style: none;
  transition: background var(--transition), color .3s; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover  { background: var(--accordion-hover); }
.faq-item[open] summary  { color: var(--orange); border-bottom: 1.5px solid var(--accordion-border); }

.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--bg-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--text-muted);
  transition: transform .25s ease, background .25s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--orange); color: #FFF; }

.faq-answer {
  padding: 16px 20px 20px; font-size: .9rem; font-weight: 600;
  color: var(--text-2); line-height: 1.7;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer ul    { margin: 10px 0 0 4px; display: flex; flex-direction: column; gap: 6px; }
.faq-answer ul li { display: flex; align-items: flex-start; gap: 8px; }
.faq-answer ul li::before { content: '→'; color: var(--sky); font-weight: 900; flex-shrink: 0; }
.faq-answer .warn {
  margin-top: 12px; padding: 10px 14px;
  background: rgba(242,140,30,.1); border-radius: var(--radius-sm);
  font-size: .82rem; font-weight: 700; color: var(--text-1);
  border-left: 3px solid var(--orange);
}

/* ============================================================
   ATTRACTIONS — play zones grid (moved from home page)
============================================================ */
.zones-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 600px) { .zones-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .zones-grid { grid-template-columns: repeat(4,1fr); } }
.zone-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-sm); }
.zone-card.wide { grid-column: span 2; aspect-ratio: 16/9; }
@media (min-width: 900px) { .zone-card.wide { grid-column: span 1; aspect-ratio: 4/5; } }
.zone-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.zone-card:hover img { transform: scale(1.06); }
.zone-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,17,40,.88) 0%, transparent 52%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
}
.zone-name { font-family: var(--font-display); font-size: .95rem; color: #FFF; line-height: 1.2; }
.zone-age  { font-size: .68rem; font-weight: 700; color: var(--yellow); margin-top: 3px; }
