/*
Theme Name: Sports Camps NE
Theme URI: https://www.ryandesign.co.uk
Author: RyanDesign
Author URI: https://www.ryandesign.co.uk
Description: Custom WordPress theme for Sports Camps NE - Action Packed Activity Camps for Kids across the North East.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scne
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready

Sports Camps NE Theme © 2025 RyanDesign
*/

/* ==========================================================================
   CSS Variables - Brand Colors
   ========================================================================== */

:root {
  --scne-red: #db5461;
  --scne-red-dark: #c2424e;
  --scne-navy: #171738;
  --scne-navy-light: #1f1f4a;
  --scne-navy-mid: #232352;
  --scne-gold: #ffd97d;
  --scne-gold-dark: #e8bf5a;
  --scne-white: #ffffff;
  --scne-text-muted: rgba(255,255,255,0.65);

  /* Functional */
  --scne-font-heading: 'Bebas Neue', sans-serif;
  --scne-font-body: 'Nunito', sans-serif;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--scne-font-body);
  background: var(--scne-navy);
  color: var(--scne-white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: var(--scne-font-body); cursor: pointer; }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--scne-font-heading);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--scne-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--scne-font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--scne-white);
}

.section-sub {
  color: var(--scne-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
  background: var(--scne-red);
  color: var(--scne-white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--scne-font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--scne-red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--scne-white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--scne-font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--scne-gold);
  color: var(--scne-gold);
}

.btn-gold {
  background: var(--scne-gold);
  color: var(--scne-navy);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-family: var(--scne-font-body);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--scne-gold-dark);
  color: var(--scne-navy);
  transform: translateY(-2px);
}


/* ==========================================================================
   Placeholder image utility
   ========================================================================== */

.scne-placeholder {
  background: linear-gradient(135deg, var(--scne-navy-mid) 0%, #2a2a60 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,217,125,0.4);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px dashed rgba(255,217,125,0.2);
}

.scne-placeholder .ph-icon {
  font-size: 2rem;
  opacity: 0.5;
}

/* ==========================================================================
   Page Wrapper
   ========================================================================== */

.site-content {
  /* sticky header no longer needs manual offset */
}

/* Trust bar replaced by activities ticker in front-page.css */

/* ==========================================================================
   Generic Section Padding
   ========================================================================== */

.scne-section {
  padding: 5rem 2rem;
}

.scne-section--navy { background: var(--scne-navy); }
.scne-section--light { background: var(--scne-navy-light); }
.scne-section--mid { background: var(--scne-navy-mid); }

/* ==========================================================================
   Page Hero (interior pages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background-color: var(--scne-navy-light);
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,23,56,0.78) 0%, rgba(23,23,56,0.88) 100%);
  z-index: 0;
}

/* When a bg image is present, deepen the overlay slightly */
.page-hero.has-hero-image .page-hero-overlay {
  background: linear-gradient(to bottom, rgba(23,23,56,0.65) 0%, rgba(23,23,56,0.82) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--scne-font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero p {
  color: var(--scne-text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Cards - shared styles
   ========================================================================== */

.scne-card {
  background: var(--scne-navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.scne-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,217,125,0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #0f0f25;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-sister-logo {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-sister-logo:hover { opacity: 1; }

.footer-sister-logo img {
  height: 60px;
  width: auto;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.footer-brand .footer-logo {
  height: 70px;
  width: auto;
  display: block;
}

.footer-sister-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--scne-text-muted);
  line-height: 1.7;
  font-weight: 600;
  max-width: 340px;
  margin-bottom: 1rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--scne-white);
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social-links a svg {
  width: 20px;
  height: 20px;
  fill: var(--scne-white);
  stroke: var(--scne-white);
}

.footer-social-links a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.site-footer h5 {
  font-family: var(--scne-font-body);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--scne-gold);
  margin-bottom: 1rem;
}

.site-footer ul li { margin-bottom: 0.55rem; }

.site-footer ul li a {
  color: var(--scne-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.site-footer ul li a:hover { color: var(--scne-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--scne-text-muted);
  font-weight: 600;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--scne-text-muted);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-legal-links a svg {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
}

.footer-legal-links a:last-child {
  font-size: 0;
  text-transform: none;
  letter-spacing: 0;
}

.footer-legal-links a:last-child svg {
  margin-right: 0;
}

.footer-legal-links a:hover { color: var(--scne-white); }

.footer-bottom {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.8rem !important;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55) !important;
  font-weight: 600 !important;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55) !important;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.75) !important;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}

.footer-bottom a { color: var(--scne-gold); }

/* ==========================================================================
   Venue Cards (archive / page)
   ========================================================================== */

.venue-card {
  background: var(--scne-navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.venue-card:hover {
  border-color: rgba(255,217,125,0.3);
  transform: translateY(-3px);
}

.venue-card-image {
  width: 100%;
  height: 180px;
  position: relative;
}

.venue-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--scne-gold);
  color: var(--scne-navy);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.venue-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.venue-card-content h3 {
  font-family: var(--scne-font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.venue-card-content .venue-address {
  font-size: 0.85rem;
  color: var(--scne-text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.venue-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.venue-chip {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255,217,125,0.1);
  color: var(--scne-gold);
  border: 1px solid rgba(255,217,125,0.2);
}

.venue-card-content .venue-cta {
  margin-top: auto;
  color: var(--scne-white);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
}

.venue-card-content .venue-cta:hover { text-decoration: underline; }

/* ==========================================================================
   Review Cards
   ========================================================================== */

.review-card {
  background: var(--scne-navy-light);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.75rem;
}

.review-stars {
  color: var(--scne-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.9rem;
  color: var(--scne-text-muted);
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 38px; height: 38px;
  background: var(--scne-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 800; font-size: 0.88rem; }
.reviewer-meta { font-size: 0.75rem; color: var(--scne-text-muted); font-weight: 600; }

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
  background: var(--scne-red);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--scne-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ==========================================================================
   Booking iframe
   ========================================================================== */

.booking-iframe-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,217,125,0.15);
}

.booking-iframe-wrap iframe {
  width: 100%;
  height: 1800px;
  border: none;
  background: #fff;
}

/* Reduce padding on venues booking section for mobile */
.venues-booking-section .container {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .venues-booking-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .venues-booking-section .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Photo strip — used on homepage and about page
   ========================================================================== */

.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 200px;
}

.photo-strip-item {
  height: 200px;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.photo-strip-item:hover img { transform: scale(1.05); }

@media (max-width: 1024px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-strip-item:nth-child(n+4) { display: none; }
}

@media (max-width: 640px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-item { height: 140px; }
  .photo-strip-item:nth-child(n+3) { display: none; }
}

/* ==========================================================================
   Scroll animations
   ========================================================================== */

.scne-fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scne-fade-in.scne-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(23,23,56,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,217,125,0.15);
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.site-logo img {
  height: 120px;
  width: auto;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-nav-primary {
  background: var(--scne-red);
  color: #ffffff;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-nav-primary:hover { background: var(--scne-red-dark); }

/* Hide "Book Now" nav menu item on desktop — the red header button handles this */
.primary-nav .nav-menu a[href*="book-now"] {
  display: none;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */

/* Desktop */
/* These elements only exist for mobile — hidden by default on desktop */
.nav-close,
.nav-book-mobile,
.nav-top-bar {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .nav-menu li { margin: 0; padding: 0; }

.primary-nav .nav-menu a {
  color: var(--scne-text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.primary-nav .nav-menu a:hover,
.primary-nav .nav-menu a.current-menu-item { color: var(--scne-gold); }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {

  /* ── Mobile nav overlay ── */
  .primary-nav {
    /* Hidden state: slide off-screen to the right */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;          /* full dynamic viewport height */
    height: 100vh;           /* fallback for older browsers */
    background: #171738;
    z-index: 1100;
    display: flex;           /* always flex — never toggled to block */
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    padding-top: 90px;       /* clear the nav-top-bar */
    overflow: hidden;        /* no internal scrolling */

    /* Off-canvas: translate right so it's invisible */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.35s;
  }

  .admin-bar .primary-nav { padding-top: 2rem; } /* wp admin bar handled by fixed positioning */

  /* Open state: slide in */
  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Hide hamburger while nav is open — X button takes over */
  body.menu-open .nav-toggle {
    display: none;
  }

  /* Nav top bar — logo left, X right */
  .nav-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-top-bar .nav-logo img {
    height: 50px;
    width: auto;
  }

  /* Close (X) button inside the nav overlay */
  .nav-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-close:hover {
    opacity: 1;
    transform: rotate(90deg);
  }

  /* Nav menu list */
  .primary-nav .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .primary-nav .nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }

  .primary-nav .nav-menu li:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .primary-nav .nav-menu a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.3rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: color 0.2s, padding-left 0.2s;
  }

  .primary-nav .nav-menu a:hover {
    color: #ffd97d;
    padding-left: 0.5rem;
  }

  /* Book Now button inside mobile nav */
  .nav-book-mobile {
    margin-top: 2rem;
    background: var(--scne-red);
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: var(--scne-font-body);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
  }

  .nav-book-mobile:hover { background: var(--scne-red-dark); }

  /* Show hamburger button */
  .nav-toggle {
    display: flex;
    z-index: 1200;           /* above the overlay */
    position: relative;
  }

  /* Hamburger stays as 3 bars — X is handled by the nav-close button */
  body.menu-open { overflow: hidden; }

  .site-header { z-index: 1000; }
  .scne-section { padding: 3rem 1.5rem; }
  .trust-bar-inner { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .scne-section { padding: 2.5rem 1rem; }
  .site-header { padding: 0 1rem; }
}



/* ==========================================================================
   Camp Dates Section wrapper
   ========================================================================== */

.camp-dates-header {
  margin-bottom: 2.5rem;
}

/* ── Camp Dates Plugin Grid (responsive columns) ── */
.camp-dates-grid,
.camp-dates-wrapper {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1rem !important;
}

.camp-date-item,
.camp-date-card {
  width: 100% !important;
}

/* Tablet: 3 columns */
@media (max-width: 1200px) {
  .camp-dates-grid,
  .camp-dates-wrapper {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Small tablet: 2 columns */
@media (max-width: 768px) {
  .camp-dates-grid,
  .camp-dates-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .camp-dates-grid,
  .camp-dates-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

/* ── Grey out past dates ── */
.camp-date-item.past,
.camp-date-card.past,
[data-past="true"] {
  opacity: 0.5 !important;
}

/* Force display of all camp dates including past */
.camp-dates-timeline {
  display: block !important;
}

.camp-dates-timeline .camp-date-item {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ── Camp Dates Fallback Grid ── */
.camp-dates-fallback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.scne-camp-date-card {
  background: var(--scne-navy-light);
  border: 1px solid rgba(255,217,125,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  cursor: pointer;
}

.scne-camp-date-card:hover {
  border-color: rgba(255,217,125,0.3);
  transform: translateY(-2px);
  background: var(--scne-navy-mid);
}

.scne-camp-date-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.scne-camp-date-card h4 {
  font-family: var(--scne-font-body);
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--scne-white);
}

.scne-camp-date-card p {
  font-size: 0.9rem;
  color: var(--scne-text-muted);
  font-weight: 600;
  margin: 0;
  margin-bottom: 0.5rem;
}

.scne-camp-date-cta {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--scne-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
}


/* ==========================================================================
   Legal Pages
   ========================================================================== */

.scne-legal-wrap {
  max-width: 800px;
}

.scne-legal-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--scne-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.scne-legal-body h2 {
  font-family: var(--scne-font-body);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--scne-white);
  margin: 2rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.scne-legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.scne-legal-body p {
  color: var(--scne-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 600;
  margin-bottom: 1rem;
}

.scne-legal-body ul,
.scne-legal-body ol {
  color: var(--scne-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.scne-legal-body ul { list-style: disc; }
.scne-legal-body ol { list-style: decimal; }

.scne-legal-body li { margin-bottom: 0.35rem; }

.scne-legal-body a {
  color: var(--scne-gold);
  text-decoration: none;
}

.scne-legal-body a:hover { text-decoration: underline; }

.scne-legal-contact {
  background: var(--scne-navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.scne-legal-contact p {
  margin-bottom: 0.75rem;
}

.scne-legal-contact p:last-child { margin-bottom: 0; }

.scne-legal-note {
  font-size: 0.85rem !important;
  background: rgba(255,217,125,0.06);
  border-left: 3px solid var(--scne-gold);
  padding: 0.85rem 1rem;
  border-radius: 0 6px 6px 0;
}

.scne-legal-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.scne-legal-nav a {
  color: var(--scne-gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scne-legal-nav a:hover { text-decoration: underline; }

/* About page — policies section */
.about-policies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-policy-card {
  background: var(--scne-navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-policy-card:hover {
  border-color: rgba(255,217,125,0.3);
  transform: translateY(-3px);
}

.about-policy-card .policy-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.about-policy-card h4 {
  font-family: var(--scne-font-body);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--scne-white);
}

.about-policy-card p {
  font-size: 0.8rem;
  color: var(--scne-text-muted);
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}

.about-policy-card span {
  font-size: 0.78rem;
  color: var(--scne-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .about-policies { grid-template-columns: 1fr; }
  .scne-legal-meta { gap: 1rem; }
}
