/*
Theme Name: Zwembad de Ringberg
Theme URI: https://zwembadderingberg.nl
Author: Claude
Author URI: https://anthropic.com
Description: Officieel WordPress-thema voor Zwembad de Ringberg in Scheemda, Groningen.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ringberg
Tags: swimming-pool, dutch, sports, blue, clean
*/

/* ===========================
   TOKENS
   =========================== */
:root {
  --pool-deep:    #2272B8;
  --pool-cyan:    #2ABDE8;
  --pool-light:   #5DD4F2;
  --concrete:     #EDF3F8;
  --foam:         #F6FAFD;
  --night:        #2A4E72;
  --text:         #334F68;
  --text-muted:   #7A98AE;
  --white:        #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:       6px;
  --shadow:       0 4px 24px rgba(7,29,46,0.12);
  --transition:   0.25s ease;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--foam);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pool-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pool-cyan); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--night);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pool-cyan);
  display: block;
  margin-bottom: 0.75rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--pool-cyan);
  color: var(--night);
  border-color: var(--pool-cyan);
}
.btn-primary:hover {
  background: var(--pool-light);
  border-color: var(--pool-light);
  color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42,189,232,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ===========================
   SITE HEADER & NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: var(--night);
  box-shadow: 0 2px 20px rgba(7,29,46,0.4);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  background: var(--night);
  box-shadow: 0 2px 20px rgba(7,29,46,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
}

.site-logo:hover .site-logo-img {
  transform: scale(1.06);
  opacity: 0.9;
}

/* Footer logo */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: transform var(--transition), opacity var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.06);
  opacity: 0.9;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.primary-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.primary-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--pool-cyan) !important;
  color: var(--night) !important;
}
.nav-cta:hover {
  background: var(--pool-light) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--night);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for text legibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,78,114,0.48) 0%,
    rgba(34,114,184,0.28) 50%,
    rgba(42,78,114,0.44) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Lane stripes — the signature element */
.hero-lanes {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 2;
}

.lane {
  flex: 1;
  border-top: 2px solid rgba(42,189,232,0.06);
  position: relative;
}

.lane:nth-child(odd) {
  background: rgba(11,79,138,0.04);
}

/* Ripple animation */
.ripple-container {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(42,189,232,0.25);
  animation: ripple-out 4s ease-out infinite;
}

.ripple:nth-child(1) { width: 200px; height: 80px; left: 50%; top: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.ripple:nth-child(2) { width: 400px; height: 160px; left: 50%; top: 50%; transform: translate(-50%, -50%); animation-delay: 0.7s; }
.ripple:nth-child(3) { width: 600px; height: 240px; left: 50%; top: 50%; transform: translate(-50%, -50%); animation-delay: 1.4s; }
.ripple:nth-child(4) { width: 800px; height: 320px; left: 50%; top: 50%; transform: translate(-50%, -50%); animation-delay: 2.1s; }

@keyframes ripple-out {
  0%   { opacity: 0.8; transform: translate(-50%, -50%) scale(0.5); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

/* Water shimmer gradient */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(42,189,232,0.10), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,189,232,0.15);
  border: 1px solid rgba(42,189,232,0.3);
  color: var(--pool-cyan);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 12px;
}

.hero-title .accent {
  color: var(--pool-cyan);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 0;
  left: 0;
  z-index: 2;
}

.stats-bar {
  display: flex;
  gap: 48px;
  justify-content: flex-end;
  padding-bottom: 0;
}

.stat {
  text-align: right;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--pool-cyan);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

/* Scroll indicator */
/* ===========================
   SECTION COMMONS
   =========================== */
.section {
  padding: 96px 0;
}

.section-light {
  background: var(--foam);
}

.section-concrete {
  background: var(--concrete);
}

.section-dark {
  background: var(--night);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p, .section-dark li {
  color: rgba(255,255,255,0.7);
}

.section-header {
  margin-bottom: 56px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 16px;
}

/* ===========================
   OPENING TIMES
   =========================== */
.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.time-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pool-cyan);
  transition: transform var(--transition), box-shadow var(--transition);
}

.time-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(7,29,46,0.16);
}

.time-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.time-card h3 {
  color: var(--pool-deep);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.time-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--concrete);
  font-size: 0.95rem;
}

.time-row:last-child { border-bottom: none; }

.time-row .day { color: var(--text-muted); padding-top: 2px; }
.time-row .closed { color: #E05252; font-weight: 600; }

.time-row .hours {
  display: block;
  font-weight: 600;
  color: var(--night);
  text-align: right;
}

.time-block {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   PRICING
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}

.price-card:hover {
  background: rgba(42,189,232,0.1);
  border-color: rgba(42,189,232,0.3);
  transform: translateY(-3px);
}

.price-card.featured {
  background: var(--pool-cyan);
  border-color: var(--pool-cyan);
}

.price-card.featured h4,
.price-card.featured .price-amount,
.price-card.featured .price-note {
  color: var(--night);
}

.price-icon { font-size: 2rem; margin-bottom: 12px; }

.price-card h4 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ===========================
   ACTIVITIES
   =========================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.activity-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7,29,46,0.18);
}

.activity-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.activity-thumb.swim    { background: linear-gradient(135deg, #0B4F8A, #2ABDE8); }
.activity-thumb.lesson  { background: linear-gradient(135deg, #0A7C5E, #2ABDE8); }
.activity-thumb.aqua    { background: linear-gradient(135deg, #6B3FA0, #2ABDE8); }
.activity-thumb.sauna   { background: linear-gradient(135deg, #C45E1A, #E8A855); }
.activity-thumb.baby    { background: linear-gradient(135deg, #1A8AC4, #5DD4F2); }
.activity-thumb.club    { background: linear-gradient(135deg, #1A3AC4, #2ABDE8); }

.activity-body { padding: 24px; }

.activity-body h3 {
  margin-bottom: 8px;
  color: var(--pool-deep);
  font-size: 1.3rem;
}

.activity-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.activity-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pool-cyan);
}

/* ===========================
   VISIT / MAP SECTION
   =========================== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info { padding-top: 8px; }

.bezoek-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.bezoek-info { padding-top: 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.bezoek-info .info-block h4 {
  color: var(--pool-deep);
}

.bestuur-block {
  margin-top: 48px;
}

.bestuur-tabel-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bestuur-tabel {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.9rem;
  table-layout: fixed;
}

.bestuur-tabel th,
.bestuur-tabel td {
  text-align: left;
  padding: 10px 20px 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bestuur-tabel th:nth-child(1),
.bestuur-tabel td:nth-child(1) { width: 28%; }

.bestuur-tabel th:nth-child(2),
.bestuur-tabel td:nth-child(2) { width: 28%; }

.bestuur-tabel th:nth-child(3),
.bestuur-tabel td:nth-child(3) { width: 44%; }

.bestuur-tabel th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pool-cyan);
  border-bottom: 2px solid rgba(42,189,232,0.3);
}

.bestuur-tabel td {
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  vertical-align: middle;
}

.bestuur-tabel tr:last-child td { border-bottom: none; }

.bestuur-tabel a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.bestuur-tabel a:hover { color: var(--pool-cyan); }

.section-dark .info-block p,
.section-dark .info-block address {
  color: rgba(255,255,255,0.75);
}

.section-dark .info-block a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.section-dark .info-block a:hover {
  color: var(--pool-cyan);
}

.info-block {
  margin-bottom: 32px;
}

.info-block h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pool-cyan);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.info-block p, .info-block address {
  font-style: normal;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===========================
   NEWSLETTER / CTA BAND
   =========================== */
.cta-band {
  background: linear-gradient(135deg, var(--pool-deep) 0%, #0D6BA5 50%, #0B8AAF 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(42,189,232,0.15);
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { color: var(--white); margin-bottom: 8px; font-size: 2rem; }
.cta-text p  { color: rgba(255,255,255,0.75); font-size: 1rem; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--pool-cyan); }

/* ===========================
   NEWS / POSTS
   =========================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.news-card:hover { transform: translateY(-4px); }

.news-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--pool-deep), var(--pool-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body { padding: 24px; }

.news-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.news-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pool-cyan);
  font-family: var(--font-display);
}

.news-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.news-body h3 a { color: var(--night); }
.news-body h3 a:hover { color: var(--pool-deep); }

.news-body p { font-size: 0.9rem; color: var(--text-muted); }

/* ===========================
   SITE FOOTER
   =========================== */
.site-footer {
  background: #1E3A56;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .logo-name { font-size: 1.3rem; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col h5,
.footer-col .footer-widget-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--pool-cyan); }

/* Widget tekst en paragrafen in footer */
.footer-col .widget p,
.footer-col .widget address {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: normal;
}

.footer-col .widget a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col .widget a:hover { color: var(--pool-cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--pool-cyan); }

/* ===========================
   WATER DIVIDER
   =========================== */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg { display: block; }

/* ===========================
   UTILITY
   =========================== */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.gap-bar { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   ALERT / NOTICE BAR
   =========================== */
.notice-bar {
  background: var(--pool-cyan);
  color: var(--night);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 101;
}

.notice-bar a { color: var(--night); text-decoration: underline; }

/* ===========================
   WORDPRESS ESSENTIALS
   =========================== */
.wp-block-image { margin: 2em 0; }
.alignleft  { float: left; margin-right: 2em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 2em; margin-bottom: 1em; }
.aligncenter { text-align: center; margin: 2em auto; }
.alignwide  { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }

.entry-content h2, .entry-content h3 { margin: 2em 0 0.75em; }
.entry-content p  { margin-bottom: 1.4em; }
.entry-content ul, .entry-content ol { margin: 1em 0 1em 2em; }
.entry-content ul li, .entry-content ol li { margin-bottom: 0.5em; }

.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ===========================
   SKIP LINK / ACCESSIBILITY
   =========================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  padding: 12px 24px;
  background: var(--pool-cyan);
  color: var(--night);
  font-weight: 700;
  z-index: 999;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid  { grid-template-columns: 1fr; }
  .cta-inner   { flex-direction: column; align-items: flex-start; }
  .stats-bar   { gap: 28px; flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--night);
    padding: 24px;
    z-index: 99;
    gap: 4px;
    align-items: stretch;
  }
  .primary-nav.open a { padding: 14px; font-size: 1.2rem; border-radius: 8px; }
  .menu-toggle { display: flex; }

  .hero-stats { position: static; margin-top: 48px; }
  .stats-bar  { justify-content: flex-start; gap: 32px; }
  .section    { padding: 64px 0; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
