/* ============================================================
   ATLANTIC WAVE GYMNASTICS — Main Theme Stylesheet
   Design: Treasure Coast Surge — Coastal Athletic Brutalism
   Colors: Deep Navy | Electric Teal | Coral Sunrise | Sand
   Fonts: Barlow Condensed (display) + DM Sans (body)
   ============================================================ */

/* --- Google Fonts are loaded via functions.php --- */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --awg-navy:        #1a2a4a;
  --awg-navy-deep:   #111d35;
  --awg-teal:        #1a9bb5;
  --awg-teal-light:  #4dbfd6;
  --awg-coral:       #e8622a;
  --awg-sand:        #f0ece0;
  --awg-foam:        #f5f9fa;
  --awg-white:       #ffffff;
  --awg-text:        #1a2a4a;
  --awg-text-muted:  #5a6a7a;
  --awg-border:      #d8e8ec;
  --awg-radius:      6px;
  --awg-shadow:      0 2px 20px rgba(26,42,74,0.08);
  --awg-shadow-lg:   0 8px 40px rgba(26,42,74,0.14);
  --awg-transition:  all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--awg-text);
  background: var(--awg-foam);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

a { color: var(--awg-teal); text-decoration: none; transition: var(--awg-transition); }
a:hover { color: var(--awg-navy); }

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

ul { list-style: none; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.awg-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) { .awg-container { padding: 0 2rem; } }

.awg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.awg-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.awg-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) { .awg-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  .awg-grid-2, .awg-grid-3, .awg-grid-4 { grid-template-columns: 1fr; }
}

.awg-section { padding: 5rem 0; }
.awg-section-sm { padding: 3rem 0; }
.awg-text-center { text-align: center; }

/* ============================================================
   COLOR BACKGROUNDS
   ============================================================ */
.bg-navy      { background-color: var(--awg-navy); }
.bg-navy-deep { background-color: var(--awg-navy-deep); }
.bg-teal      { background-color: var(--awg-teal); }
.bg-sand      { background-color: var(--awg-sand); }
.bg-foam      { background-color: var(--awg-foam); }
.bg-white     { background-color: var(--awg-white); }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.awg-topbar {
  background: var(--awg-teal);
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0;
  text-align: center;
}
.awg-topbar a { color: white; }
.awg-topbar a:hover { text-decoration: underline; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.awg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--awg-transition);
}

.awg-header.scrolled {
  background: rgba(26, 42, 74, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.awg-header.page-header {
  background: rgba(26, 42, 74, 0.96);
  backdrop-filter: blur(12px);
}

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

.awg-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.awg-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
}

.awg-logo-text { line-height: 1.1; }
.awg-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  letter-spacing: 0.04em;
  display: block;
}
.awg-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--awg-teal-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.awg-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.awg-nav-links a {
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: var(--awg-transition);
}
.awg-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 2px;
  background: var(--awg-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.awg-nav-links a:hover,
.awg-nav-links a.current-menu-item { color: white; }
.awg-nav-links a:hover::after,
.awg-nav-links a.current-menu-item::after { transform: scaleX(1); }

.awg-nav-cta {
  background: var(--awg-coral);
  color: white !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: var(--awg-radius);
  transition: var(--awg-transition);
}
.awg-nav-cta:hover {
  background: #d4541f !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,98,42,0.4);
}
.awg-nav-cta::after { display: none !important; }

/* Mobile hamburger */
.awg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.awg-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--awg-transition);
}

.awg-mobile-nav {
  display: none;
  background: var(--awg-navy-deep);
  padding: 1rem;
}
.awg-mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem;
  border-radius: var(--awg-radius);
  font-weight: 500;
  transition: var(--awg-transition);
}
.awg-mobile-nav a:hover { background: rgba(255,255,255,0.08); color: white; }
.awg-mobile-nav .awg-nav-cta { text-align: center; margin-top: 0.5rem; display: block; }

@media (max-width: 1024px) {
  .awg-nav-links { display: none; }
  .awg-hamburger { display: flex; }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.awg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.awg-hero-page {
  min-height: 60vh;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.awg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.awg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,29,53,0.92) 0%, rgba(17,29,53,0.70) 40%, rgba(17,29,53,0.20) 70%, transparent 100%);
}

.awg-hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,53,0.92) 0%, rgba(17,29,53,0.40) 50%, transparent 100%);
}

.awg-hero-content { position: relative; z-index: 2; }

.awg-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.awg-eyebrow-line {
  width: 2.5rem;
  height: 2px;
  background: var(--awg-teal);
  flex-shrink: 0;
}
.awg-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--awg-teal-light);
}

.awg-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.awg-hero-title .teal { color: var(--awg-teal); }
.awg-hero-title .coral { color: var(--awg-coral); }

.awg-page-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.awg-hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.awg-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Wave bottom divider */
.awg-wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.awg-wave-bottom svg { display: block; width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.awg-btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--awg-radius);
  border: none;
  cursor: pointer;
  transition: var(--awg-transition);
  text-align: center;
  text-decoration: none;
}
.awg-btn:active { transform: scale(0.97); }

.awg-btn-coral {
  background: var(--awg-coral);
  color: white;
}
.awg-btn-coral:hover {
  background: #d4541f;
  color: white;
  box-shadow: 0 4px 20px rgba(232,98,42,0.4);
  transform: translateY(-1px);
}

.awg-btn-teal {
  background: var(--awg-teal);
  color: white;
}
.awg-btn-teal:hover {
  background: #157d94;
  color: white;
  box-shadow: 0 4px 20px rgba(26,155,181,0.4);
  transform: translateY(-1px);
}

.awg-btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.awg-btn-outline-white:hover {
  background: white;
  color: var(--awg-navy);
  transform: translateY(-1px);
}

.awg-btn-outline-teal {
  background: transparent;
  color: var(--awg-teal);
  border: 2px solid var(--awg-teal);
}
.awg-btn-outline-teal:hover {
  background: var(--awg-teal);
  color: white;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.awg-section-header { margin-bottom: 3rem; }

.awg-section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--awg-navy);
  line-height: 1.05;
}
.awg-section-title .teal { color: var(--awg-teal); }
.awg-section-title .coral { color: var(--awg-coral); }
.awg-section-title.light { color: white; }

.awg-section-sub {
  color: var(--awg-text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 600px;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.awg-stat-strip {
  background: var(--awg-foam);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--awg-border);
}
.awg-stat-strip .awg-grid-4 { align-items: center; }
.awg-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--awg-teal);
  display: block;
}
.awg-stat-label {
  font-size: 0.85rem;
  color: var(--awg-text-muted);
}
.awg-stat-item { text-align: center; }

/* ============================================================
   SERVICE / PROGRAM CARDS
   ============================================================ */
.awg-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--awg-shadow);
  border-top: 3px solid var(--awg-teal);
  transition: var(--awg-transition);
  text-decoration: none;
  display: block;
  color: var(--awg-text);
}
.awg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--awg-shadow-lg);
  color: var(--awg-text);
}
.awg-card.coral { border-top-color: var(--awg-coral); }
.awg-card.navy  { border-top-color: var(--awg-navy); }

.awg-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.awg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.awg-card:hover .awg-card-img img { transform: scale(1.05); }

.awg-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,29,53,0.7) 0%, transparent 60%);
}
.awg-card-tagline {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--awg-teal-light);
}

.awg-card-body { padding: 1.5rem; }
.awg-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--awg-navy);
  margin-bottom: 0.5rem;
}
.awg-card-desc {
  font-size: 0.9rem;
  color: var(--awg-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.awg-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--awg-teal);
}

/* ============================================================
   WHY CHOOSE US GRID
   ============================================================ */
.awg-why-card {
  background: #1e3055;
  border-left: 3px solid var(--awg-teal);
  border-radius: 8px;
  padding: 1.5rem;
}
.awg-why-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(26,155,181,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.awg-why-icon svg { width: 20px; height: 20px; stroke: var(--awg-teal); fill: none; stroke-width: 2; }
.awg-why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
.awg-why-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.awg-cta-banner { padding: 5rem 0; text-align: center; }
.awg-cta-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.awg-cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.awg-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FEATURE LIST (checkmarks / bullets)
   ============================================================ */
.awg-feature-list { list-style: none; }
.awg-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--awg-text-muted);
}
.awg-feature-list li::before {
  content: '✓';
  color: var(--awg-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.awg-feature-list.light li { color: rgba(255,255,255,0.75); }
.awg-feature-list.light li::before { color: var(--awg-teal-light); }

/* ============================================================
   LEVEL / CLASS CARDS
   ============================================================ */
.awg-level-card {
  background: white;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: var(--awg-shadow);
  border-top: 4px solid var(--awg-teal);
}
.awg-level-card.coral { border-top-color: var(--awg-coral); }
.awg-level-card.navy  { border-top-color: var(--awg-navy); }

.awg-level-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 1rem;
}
.awg-level-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--awg-navy);
}
.awg-level-age {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: var(--awg-teal);
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}
.awg-level-age.coral { background: var(--awg-coral); }
.awg-level-age.navy  { background: var(--awg-navy); }

.awg-level-desc {
  font-size: 0.9rem;
  color: var(--awg-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.awg-skills-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--awg-text-muted);
  margin-bottom: 0.5rem;
}
.awg-skills-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.awg-skill-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(26,155,181,0.1);
  color: var(--awg-teal);
}
.awg-skill-tag.coral { background: rgba(232,98,42,0.1); color: var(--awg-coral); }
.awg-skill-tag.navy  { background: rgba(26,42,74,0.08); color: var(--awg-navy); }

/* ============================================================
   CAMP DETAIL CARD
   ============================================================ */
.awg-camp-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--awg-shadow);
  border-left: 5px solid var(--awg-teal);
  margin-bottom: 1.5rem;
}
.awg-camp-card.coral { border-left-color: var(--awg-coral); }
.awg-camp-card.navy  { border-left-color: var(--awg-navy); }
.awg-camp-body { padding: 2rem; }
.awg-camp-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; }
@media (max-width: 768px) { .awg-camp-inner { grid-template-columns: 1fr; } }

.awg-camp-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--awg-teal);
  margin-bottom: 0.25rem;
}
.awg-camp-tagline.coral { color: var(--awg-coral); }

.awg-camp-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--awg-navy);
  margin-bottom: 0.75rem;
}
.awg-camp-desc {
  font-size: 0.9rem;
  color: var(--awg-text-muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.awg-camp-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--awg-teal);
  margin-top: 0.5rem;
}
.awg-camp-note.coral { color: var(--awg-coral); }

.awg-camp-details {
  background: var(--awg-foam);
  border-radius: 8px;
  padding: 1.25rem;
  min-width: 220px;
}
.awg-camp-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--awg-border);
}
.awg-camp-detail-row:last-child { border-bottom: none; }
.awg-camp-detail-label { color: var(--awg-text-muted); }
.awg-camp-detail-val { font-weight: 600; color: var(--awg-navy); text-align: right; }

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.awg-info-card {
  background: white;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--awg-shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.awg-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(26,155,181,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.awg-info-icon svg { width: 18px; height: 18px; stroke: var(--awg-teal); fill: none; stroke-width: 2; }
.awg-info-label { font-size: 0.8rem; font-weight: 600; color: var(--awg-navy); margin-bottom: 0.2rem; }
.awg-info-val { font-size: 0.9rem; color: var(--awg-text-muted); }
.awg-info-val a { color: var(--awg-text-muted); }
.awg-info-val a:hover { color: var(--awg-teal); }

/* ============================================================
   JACKRABBIT REGISTRATION EMBED
   ============================================================ */
.awg-jackrabbit-wrap {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--awg-shadow);
  border-top: 4px solid var(--awg-teal);
}
.awg-jackrabbit-wrap h3 {
  font-size: 1.6rem;
  color: var(--awg-navy);
  margin-bottom: 0.5rem;
}
.awg-jackrabbit-wrap p {
  color: var(--awg-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.awg-jackrabbit-wrap iframe {
  width: 100%;
  border: none;
  border-radius: 6px;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.awg-wave { display: block; width: 100%; line-height: 0; }
.awg-wave svg { display: block; width: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.awg-footer {
  background: var(--awg-navy-deep);
  color: white;
  padding: 4rem 0 2rem;
}
.awg-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) { .awg-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .awg-footer-grid { grid-template-columns: 1fr; } }

.awg-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.awg-footer-logo img { height: 56px; width: 56px; object-fit: contain; }
.awg-footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.awg-footer-social { display: flex; gap: 0.75rem; }
.awg-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26,155,181,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--awg-transition);
  color: white;
  text-decoration: none;
}
.awg-social-btn:hover { background: var(--awg-teal); color: white; }
.awg-social-btn svg { width: 16px; height: 16px; }

.awg-footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--awg-teal-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.awg-footer-links { list-style: none; }
.awg-footer-links li { margin-bottom: 0.5rem; }
.awg-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--awg-transition);
}
.awg-footer-links a:hover { color: var(--awg-teal-light); }

.awg-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.awg-footer-contact-item svg { width: 14px; height: 14px; stroke: var(--awg-teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.awg-footer-contact-item a { color: rgba(255,255,255,0.65); }
.awg-footer-contact-item a:hover { color: var(--awg-teal-light); }

.awg-footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.awg-footer-hours-row strong { color: white; }

.awg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   MAP EMBED
   ============================================================ */
.awg-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--awg-shadow-lg);
  height: 380px;
}
.awg-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   DARK INFO BOX
   ============================================================ */
.awg-dark-box {
  background: var(--awg-navy);
  border-radius: 10px;
  padding: 2rem;
  color: white;
}
.awg-dark-box h3 { color: white; margin-bottom: 1rem; font-size: 1.4rem; }

/* ============================================================
   STEP CARDS (How to Register)
   ============================================================ */
.awg-step-card {
  background: #1e3055;
  border-radius: 10px;
  padding: 1.5rem;
}
.awg-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--awg-coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.awg-step-title { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
.awg-step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   SCHOOL TAGS
   ============================================================ */
.awg-school-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.awg-school-tag {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: var(--awg-foam);
  color: var(--awg-text-muted);
}

/* ============================================================
   PILLAR CARDS (Competitive Teams)
   ============================================================ */
.awg-pillar-card {
  background: #1e3055;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.awg-pillar-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(26,155,181,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.awg-pillar-icon svg { width: 22px; height: 22px; stroke: var(--awg-teal); fill: none; stroke-width: 2; }
.awg-pillar-title { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.awg-pillar-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .awg-section { padding: 3rem 0; }
  .awg-hero-title { font-size: 3rem; }
  .awg-hero-btns { flex-direction: column; }
  .awg-btn { width: 100%; text-align: center; }
  .awg-cta-btns { flex-direction: column; align-items: center; }
  .awg-stat-strip .awg-grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   WORDPRESS SPECIFIC OVERRIDES
   ============================================================ */
.site-header, .site-footer, .entry-header, .entry-content,
.wp-block-group, .wp-block-columns { all: unset; }

/* Ensure full-width page template works */
.page-template-full-width .site-main { max-width: 100%; padding: 0; }
.page-template-full-width .entry-content { padding: 0; }

/* Hide default WP page title on full-width templates */
.page-template-full-width .entry-header { display: none; }
