/*
Theme Name: Football Squirts
Theme URI: https://www.ryandesign.co.uk
Author: RyanDesign
Author URI: https://www.ryandesign.co.uk
Description: Custom WordPress theme for Football Squirts - Kids Football Classes in Newcastle & North Tyneside. Features booking integration, membership system, and age-appropriate class showcasing for children aged 2-6.
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: football-squirts
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready

Football Squirts Theme © 2025 RyanDesign
*/

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

:root {
  /* Brand Yellow */
  --fs-yellow: #fff100;
  --fs-yellow-light: #fffde6;
  --fs-yellow-dark: #e6d900;
  --fs-yellow-darker: #ccbf00;
  --fs-yellow-text: #1a1a00;
  
  /* Supporting Colors */
  --fs-green: #22C55E;
  --fs-green-light: #DCFCE7;
  --fs-blue: #3B82F6;
  --fs-blue-light: #DBEAFE;
  --fs-purple: #8B5CF6;
  --fs-orange: #F97316;
  --fs-red: #EF4444;
  
  /* Neutrals */
  --fs-dark: #1E293B;
  --fs-gray-100: #F1F5F9;
  --fs-gray-200: #E2E8F0;
  --fs-gray-300: #CBD5E1;
  --fs-gray-500: #64748B;
  --fs-gray-600: #475569;
  --fs-gray-700: #334155;
  --fs-white: #FFFFFF;
  
  /* Header Colors */
  --fs-header-bg: #3d3d3d;
  --fs-announcement-bg: #2d2d2d;
  
  /* Typography */
  --fs-font-display: 'Fredoka', sans-serif;
  --fs-font-body: 'Nunito', sans-serif;
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fs-font-body);
  background: var(--fs-white);
  color: var(--fs-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fs-font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fs-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

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

.section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--fs-gray-500);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
  box-shadow: 0 4px 15px rgba(255, 241, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 241, 0, 0.5);
}

.btn-secondary {
  background: var(--fs-dark);
  color: var(--fs-white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--fs-gray-500);
  color: var(--fs-gray-600);
}

.btn-outline:hover {
  border-color: var(--fs-yellow);
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
}

.btn-green {
  background: linear-gradient(135deg, var(--fs-green), #16A34A);
  color: white;
}

.btn-green:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement-bar {
  background: var(--fs-announcement-bg);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fs-yellow);
}

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

.site-header {
  background: var(--fs-header-bg);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

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

.main-nav a {
  color: var(--fs-gray-300);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--fs-white);
}

.main-nav .menu-item-has-children > a::after {
  content: '▾';
  margin-left: 0.25rem;
  font-size: 0.75rem;
}

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

.btn-login {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--fs-gray-500);
  border-radius: 50px;
  background: transparent;
  color: var(--fs-gray-300);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--fs-yellow);
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

.btn-book {
  padding: 0.7rem 1.5rem;
  background: var(--fs-yellow);
  border-radius: 50px;
  color: var(--fs-yellow-text);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 241, 0, 0.4);
  transition: all 0.2s;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 241, 0, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 241, 0, 0.65) 0%, rgba(255, 241, 0, 0.50) 50%, rgba(255, 241, 0, 0.40) 100%);
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fs-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fs-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-badge span {
  background: var(--fs-yellow);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--fs-yellow-text);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--fs-white);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.7;
}

.hero p {
  font-size: 1.25rem;
  color: var(--fs-gray-700);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Postcode Search */
.postcode-search {
  background: var(--fs-white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-width: 500px;
}

.postcode-search label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fs-dark);
}

.search-input-wrap {
  display: flex;
  gap: 0.75rem;
}

.search-input-wrap input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--fs-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--fs-yellow);
}

.search-input-wrap button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--fs-green), #16A34A);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.search-input-wrap button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.search-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--fs-gray-600);
}

.search-hint svg {
  width: 16px;
  height: 16px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

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

.floating-card {
  position: absolute;
  background: var(--fs-white);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-card .fc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.floating-card .fc-label {
  font-size: 0.75rem;
  color: var(--fs-gray-500);
}

.floating-card .fc-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fs-dark);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
  background: var(--fs-white);
  padding: 2rem;
  border-bottom: 1px solid var(--fs-gray-200);
}

.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--fs-yellow-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--fs-yellow-darker);
}

.trust-text {
  font-weight: 700;
  color: var(--fs-dark);
}

.trust-text span {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--fs-gray-500);
}

/* ==========================================================================
   Age Groups Section
   ========================================================================== */

.age-groups {
  background: var(--fs-white);
}

.age-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.age-card {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--fs-gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.age-card:hover {
  transform: translateY(-5px);
  border-color: var(--fs-yellow);
  box-shadow: 0 20px 40px rgba(255, 241, 0, 0.2);
}

.age-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.age-card.age-2::before { background: #F472B6; }
.age-card.age-3::before { background: #60A5FA; }
.age-card.age-4::before { background: #34D399; }
.age-card.age-5::before { background: var(--fs-yellow); }

.age-card .age-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fs-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fs-white);
}

.age-card.age-2 .age-number { background: linear-gradient(135deg, #F472B6, #EC4899); }
.age-card.age-3 .age-number { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.age-card.age-4 .age-number { background: linear-gradient(135deg, #34D399, #10B981); }
.age-card.age-5 .age-number { background: linear-gradient(135deg, var(--fs-yellow), var(--fs-yellow-dark)); color: var(--fs-yellow-text); }

.age-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.age-card p {
  font-size: 0.9rem;
  color: var(--fs-gray-500);
  margin-bottom: 1rem;
}

.age-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.age-features span {
  font-size: 0.8rem;
  color: var(--fs-gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.age-features span::before {
  content: '✓';
  color: var(--fs-green);
  font-weight: 700;
}

/* ==========================================================================
   Photo Strip
   ========================================================================== */

.photo-strip {
  padding: 3rem 0;
  background: var(--fs-gray-100);
  overflow: hidden;
}

.photo-strip-inner {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-strip-item {
  flex: 1;
  min-width: 300px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

/* ==========================================================================
   Venues Section
   ========================================================================== */

.venues {
  background: var(--fs-white);
}

.venues-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.venue-card {
  background: var(--fs-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--fs-gray-100);
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: var(--fs-yellow);
}

.venue-image {
  height: 160px;
  background: linear-gradient(135deg, var(--fs-yellow-light), var(--fs-green-light));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.venue-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--fs-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.venue-content {
  padding: 1.5rem;
}

.venue-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.venue-content p {
  font-size: 0.875rem;
  color: var(--fs-gray-500);
  margin-bottom: 1rem;
}

.venue-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--fs-gray-600);
}

.venue-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.view-all-venues {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   Membership Section
   ========================================================================== */

.membership {
  background: linear-gradient(135deg, var(--fs-dark) 0%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

.membership-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.membership .section-header h2 {
  color: var(--fs-white);
}

.membership .section-header p {
  color: var(--fs-gray-300);
}

.membership-card {
  background: var(--fs-white);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--fs-yellow), var(--fs-green), var(--fs-blue));
}

.membership-price {
  margin-bottom: 1.5rem;
}

.membership-price .amount {
  font-family: var(--fs-font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fs-dark);
}

.membership-price .period {
  font-size: 1.25rem;
  color: var(--fs-gray-500);
}

.membership-price .joining {
  display: inline-block;
  background: var(--fs-yellow);
  color: var(--fs-yellow-text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.membership-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.membership-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fs-gray-700);
}

.membership-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--fs-green-light);
  color: var(--fs-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.membership-cta {
  padding: 1rem 3rem;
  background: var(--fs-yellow);
  border: none;
  border-radius: 50px;
  color: var(--fs-yellow-text);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(255, 241, 0, 0.3);
}

.membership-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(255, 241, 0, 0.5);
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features {
  background: var(--fs-gray-100);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--fs-white);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--fs-yellow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card:nth-child(1) .feature-icon { background: var(--fs-yellow-light); color: var(--fs-yellow-darker); }
.feature-card:nth-child(2) .feature-icon { background: var(--fs-green-light); color: var(--fs-green); }
.feature-card:nth-child(3) .feature-icon { background: var(--fs-blue-light); color: var(--fs-blue); }
.feature-card:nth-child(4) .feature-icon { background: #FEE2E2; color: var(--fs-red); }
.feature-card:nth-child(5) .feature-icon { background: #E9D5FF; color: var(--fs-purple); }
.feature-card:nth-child(6) .feature-icon { background: #FFEDD5; color: var(--fs-orange); }

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fs-gray-500);
  line-height: 1.6;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
  background: var(--fs-white);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--fs-gray-100);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--fs-gray-200);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--fs-yellow);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: var(--fs-yellow);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 1px var(--fs-yellow-dark);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--fs-gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: normal;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--fs-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--fs-yellow-text);
}

.author-info strong {
  display: block;
  color: var(--fs-dark);
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--fs-gray-500);
}

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

.cta-section {
  padding: 5rem 2rem;
  background: var(--fs-yellow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '⚽';
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 5rem;
  opacity: 0.15;
}

.cta-section::after {
  content: '⚽';
  position: absolute;
  bottom: 20%;
  right: 10%;
  font-size: 5rem;
  opacity: 0.15;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--fs-gray-700);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-btn-primary {
  padding: 1rem 2.5rem;
  background: var(--fs-dark);
  color: var(--fs-white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--fs-dark);
  border: 2px solid var(--fs-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn-secondary:hover {
  background: var(--fs-dark);
  color: var(--fs-white);
}

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

.site-footer {
  background: var(--fs-dark);
  color: var(--fs-gray-300);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fs-white);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--fs-yellow);
  color: var(--fs-dark);
}

.footer-column h4 {
  color: var(--fs-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--fs-gray-400);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--fs-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--fs-gray-500);
}

.footer-bottom a {
  color: var(--fs-yellow);
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

/* WordPress Navigation Menu */
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--fs-header-bg);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}

.main-nav li {
  position: relative;
}

.main-nav li:hover > ul {
  display: flex;
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .postcode-search {
    margin: 0 auto;
  }
  
  .hero-visual {
    display: none;
  }
  
  .age-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .photo-strip-inner {
    flex-wrap: wrap;
  }
  
  .photo-strip-item {
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .trust-bar-inner {
    gap: 2rem;
  }
  
  .trust-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .age-cards {
    grid-template-columns: 1fr;
  }
  
  .venues-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .membership-features {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .photo-strip-item {
    min-width: 100%;
  }
  
  .search-input-wrap {
    flex-direction: column;
  }
  
  .header-actions .btn-login {
    display: none;
  }
}
