/*
Theme Name: Dreams Cricket Coaching Foundation
Theme URI: https://dreamscricketcoachinglatur.com
Author: Dreams Cricket Coaching Foundation
Author URI: https://dreamscricketcoachinglatur.com
Description: Official website theme for Dreams Cricket Coaching Foundation, Latur, Maharashtra.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: dcc-theme
*/

/* ============================================
   CSS VARIABLES — BRAND COLORS
   ============================================ */
:root {
  --navy:        #1E4D1E;
  --navy-dark:   #123012;
  --navy-light:  #2a6330;
  --gold:        #C9A227;
  --gold-light:  #E8BE45;
  --gold-dark:   #A8841C;
  --silver:      #B8C8D8;
  --silver-light:#EFF3F7;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray:        #6C757D;
  --dark:        #1A1A1A;
  --border:      #E2E8F0;
  --text:        #374151;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);

  --radius:     6px;
  --radius-lg:  14px;
  --radius-pill: 9999px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

p { margin-bottom: 1rem; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 55px 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }

.bg-navy    { background-color: var(--navy); }
.bg-gold    { background-color: var(--gold); }
.bg-light   { background-color: var(--off-white); }
.bg-white   { background-color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 14px;
  border-radius: 2px;
}

.section-title.centered::after {
  margin: 14px auto 0;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* ============================================
   SITE HEADER — 2-tier (top bar + nav bar)
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* ── Top bar ── */
.header-top {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

/* Social icons in top bar */
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.header-social a:hover { opacity: 0.8; }
.header-social svg { width: 26px; height: 26px; }

.header-social-spacer { width: calc(3 * 26px + 2 * 14px); flex-shrink: 0; }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.site-logo img,
.site-logo .custom-logo {
  height: 90px;
  width: auto;
}

.logo-initials {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-dreams {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.62rem;
  color: var(--gray);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Contact info top-right */
.header-contact-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.header-contact-info svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.header-director-contacts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-director-contacts a {
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.header-director-contacts a:hover { color: var(--gold-dark); }

/* ── Nav bar ── */
.header-nav-bar {
  background: var(--navy);
}

.header-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 6px 20px !important;
}
.nav-cta a:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  position: absolute;
  right: 24px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SLIDER — full-screen, fixed header+footer
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - 116px); /* viewport minus header height (64+52) */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Slider container fills the flex space above the stats bar */
.hero-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* Each slide is absolutely stacked, fades in/out */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  text-align: center;
}
.hero-slide.active { opacity: 1; }

/* Background image per slide — replace background-color with url() when you have photos */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

/* Centred text block */
.hero-center {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--gold); font-style: italic; }

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Gold hero button */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}

/* Prev / Next arrows */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover,
.hero-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}

/* Stats bar — sits below slider, same dark green as nav */
.hero-stats-bar {
  background: var(--navy-dark);
  padding: 20px 24px;
  border-top: 2px solid rgba(201,162,39,0.2);
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ABOUT / MISSION SECTION
   ============================================ */
.about-section {
  background: var(--white);
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--silver-light), #dce6f0);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}

.about-badge .num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  border: 1px solid rgba(201,162,39,0.2);
}

.feature-text h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--navy); }
.feature-text p  { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ============================================
   PROGRAMS / COACHING SECTION
   ============================================ */
.programs-section { background: var(--off-white); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.program-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.2);
}

.program-card:hover::after { transform: scaleX(1); }

.program-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,162,39,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border: 1px solid rgba(201,162,39,0.2);
  transition: var(--transition);
}

.program-card:hover .program-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.program-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.program-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-link::after { content: '→'; transition: transform 0.25s ease; }
.program-card:hover .program-link::after { transform: translateX(5px); }

/* ============================================
   WHY CHOOSE US — light redesign
   ============================================ */
.why-section { background: var(--off-white); }

.why-section .section-title { color: var(--navy); }
.why-section .section-subtitle { color: var(--gray); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.25);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: rgba(201, 162, 39, 0.08);
  border: 2px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.why-card h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.08) 0%, transparent 70%);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(184,200,216,0.9);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NEWS / EVENTS CARDS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.2);
}

.news-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--silver-light), #dce6f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-body { padding: 24px; }

.news-meta {
  font-size: 0.75rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  font-weight: 600;
}

.news-card-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}

.news-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.65;
}

.news-read-more {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.news-read-more::after { content: '→'; transition: transform 0.25s ease; }
.news-card:hover .news-read-more::after { transform: translateX(4px); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--navy-dark);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

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

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(184,200,216,0.85);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(184,200,216,0.7);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(184,200,216,0.7); }

/* ============================================
   VENUE PAGE
   ============================================ */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.venue-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--silver-light), #dce6f0);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
}

.venue-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.venue-gallery .main-img {
  grid-column: 1 / -1;
  height: 420px;
}

.venue-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.venue-feature {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.venue-feature:hover {
  border-color: rgba(201,162,39,0.3);
  box-shadow: var(--shadow-sm);
}

.venue-feature-icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.1);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,162,39,0.2);
}

.venue-feature h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--navy); }
.venue-feature p  { font-size: 0.85rem; color: var(--gray); margin: 0; }

.venue-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  margin-top: 50px;
}

/* ============================================
   COACHING PAGE
   ============================================ */
.coaching-programs {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.coaching-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 44px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.coaching-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.2);
}

.coaching-item:nth-child(even) { direction: rtl; }
.coaching-item:nth-child(even) > * { direction: ltr; }

.coaching-item-image {
  height: 280px;
  background: linear-gradient(135deg, var(--silver-light), #dce6f0);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  overflow: hidden;
}

.coaching-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.coaching-tag {
  display: inline-block;
  background: rgba(201,162,39,0.1);
  color: var(--gold-dark);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,162,39,0.2);
}

.coaching-item h3 { font-size: 1.5rem; margin-bottom: 14px; }
.coaching-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; }

.coaching-highlights {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coaching-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.coaching-highlight::before {
  content: '✓';
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* ============================================
   COACHES PAGE
   ============================================ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border);
}

.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.2);
}

.coach-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.coach-card:hover .coach-photo img { transform: scale(1.04); }

.coach-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.2);
}

.coach-body { padding: 26px 22px; }

.coach-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.coach-role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: block;
}

.coach-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.coach-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.specialty-tag {
  background: var(--off-white);
  color: var(--navy);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  border-color: rgba(201,162,39,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.partner-logo img {
  max-height: 80px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition);
}
.partner-card:hover .partner-logo img { filter: grayscale(0); opacity: 1; }

.partner-logo-placeholder {
  width: 120px;
  height: 60px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.partner-card h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.partner-card p  { font-size: 0.8rem; color: var(--gray); margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-text h4 {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-info-text p,
.contact-info-text a {
  color: rgba(184,200,216,0.85);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.contact-social { margin-top: 32px; }
.contact-social h4 {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* Contact form inputs */
.dcc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.dcc-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,40,80,0.08);
}
.dcc-input::placeholder { color: #aab; }

/* Contact Form 7 styling */
.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  margin-bottom: 16px;
  display: block;
}

.wpcf7 textarea {
  border-radius: var(--radius-lg);
  min-height: 130px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}

.wpcf7 input[type="submit"] {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  padding: 13px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  height: 50px;
}

.footer-logo-text .logo-name { color: var(--white); font-size: 1rem; }
.footer-logo-text .logo-tagline { color: var(--silver); font-size: 0.65rem; }

.footer-desc {
  color: rgba(184,200,216,0.7);
  font-size: 0.85rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 8px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(184,200,216,0.65);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(184,200,216,0.65);
  font-size: 0.83rem;
  line-height: 1.55;
  margin: 0;
}

/* Override for venue/contact pages where cards are on white background */
.venue-contact-list .footer-contact-item p,
.venue-contact-list .footer-contact-item a {
  color: var(--gray);
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(184,200,216,0.4);
  font-size: 0.8rem;
  margin: 0;
}

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

/* ============================================
   BLOG / NEWS — Archive & Single
   ============================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,0.2);
  transform: translateY(-3px);
}

.post-card-img {
  height: 240px;
  background: linear-gradient(135deg, var(--silver-light), #dce6f0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  overflow: hidden;
}

.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-card-body { padding: 28px; }

.post-meta {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.post-card-body h2 a {
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.4;
}
.post-card-body h2 a:hover { color: var(--gold-dark); }

.post-card-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin: 10px 0 18px; }

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.widget-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

/* Single Post */
.single-post-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.single-post-content h1 { font-size: 1.8rem; margin-bottom: 10px; }
.single-post-content .post-meta { margin-bottom: 24px; }
.single-post-content img { border-radius: var(--radius); margin: 20px 0; }
.single-post-content h2,
.single-post-content h3 { margin: 28px 0 14px; }
.single-post-content ul,
.single-post-content ol { padding-left: 20px; margin-bottom: 16px; }
.single-post-content li { margin-bottom: 6px; color: var(--text); font-size: 0.95rem; }

/* ============================================
   PAGE — Generic
   ============================================ */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-content h2,
.page-content h3 { margin: 28px 0 12px; }
.page-content p  { font-size: 0.95rem; line-height: 1.8; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content li { margin-bottom: 6px; font-size: 0.95rem; }

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .programs-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .coaches-grid    { grid-template-columns: repeat(2, 1fr); }
  .partners-grid   { grid-template-columns: repeat(3, 1fr); }
  .hero            { min-height: 75vh; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .section-padding    { padding: 55px 0; }

  /* Header */
  .header-contact-info { display: none; }
  .header-social { gap: 8px; }

  .main-nav {
    position: fixed;
    top: 152px; /* 100px top bar + 52px nav bar */
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px;
    transform: translateY(-200%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .main-nav.open { transform: translateY(0); }

  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a  { display: block; padding: 11px 16px; border-radius: var(--radius); text-transform: none; }
  .nav-toggle  { display: flex; }

  .logo-dreams { font-size: 1.6rem; }
  .logo-sub { font-size: 0.82rem; }

  /* Grids */
  .programs-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .blog-layout    { grid-template-columns: 1fr; }
  .coaches-grid   { grid-template-columns: 1fr; }
  .partners-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .news-grid      { grid-template-columns: 1fr; }
  .venue-gallery  { grid-template-columns: 1fr; }
  .venue-features { grid-template-columns: 1fr; }

  .coaching-item { grid-template-columns: 1fr; padding: 28px; }
  .coaching-item:nth-child(even) { direction: ltr; }

  .hero-stats     { justify-content: center; }
  .hero-actions   { flex-direction: column; align-items: center; }

  .wpcf7-form .form-row { grid-template-columns: 1fr; }

  .about-badge { display: none; }
  .section-subtitle { max-width: 100%; }
}

@media (max-width: 480px) {
  .why-grid      { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats    { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.schedule-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.schedule-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--off-white); }

.schedule-table td {
  padding: 16px 20px;
  color: var(--dark);
}

.schedule-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.schedule-badge.morning  { background: #FFF3CD; color: #856404; }
.schedule-badge.evening  { background: #D1ECF1; color: #0C5460; }
.schedule-badge.weekend  { background: #D4EDDA; color: #155724; }
.schedule-badge.private  { background: #F3E5F5; color: #6A1B9A; }

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

/* ============================================
   LOGO IMAGE
   ============================================ */
.site-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--white);
  padding: 3px;
}

/* ============================================
   WATERMARK LOGO — fixed background
   ============================================ */
.site-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background-image: url('/wp-content/themes/wp-theme-dcc/assets/images/logo.jpeg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.09;
  pointer-events: none;
  z-index: 999;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  display: block;
  background: var(--silver-light);
}

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

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.8rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── JPL Videos ────────────────────────────────────────── */
.jpl-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.jpl-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.jpl-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.jpl-video-label {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 16px;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .jpl-videos { grid-template-columns: 1fr; }
}

/* JPL 2x2 about image grid */
.jpl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.jpl-about-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* JPL Stats */
.jpl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jpl-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.jpl-stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.jpl-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* JPL Committee */
.jpl-committee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.jpl-committee span {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 768px) {
  .jpl-stats { grid-template-columns: repeat(2, 1fr); }
}

.jpl-gallery-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 800px;
  margin: 0 auto;
}

.jpl-gallery-grid .gallery-item {
  aspect-ratio: 4 / 3;
  height: auto;
}

.gallery-album { margin-bottom: 56px; }

.gallery-album-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 20px;
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

.gallery-empty h3 { color: var(--navy); margin: 16px 0 8px; }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   FOUNDERS & DIRECTORS PAGE
   ============================================ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.founder-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 2.5rem;
  gap: 8px;
}

.founder-photo-placeholder p { font-size: 0.82rem; }

.founder-info {
  padding: 24px;
}

.founder-info h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.founder-info p { font-size: 0.88rem; color: var(--gray); }

.founder-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 5px 14px;
  transition: background 0.2s, color 0.2s;
}
.founder-contact:hover { background: var(--navy); color: var(--white); }

/* ── Floating Donation QR ──────────────────────────────── */
.donate-float {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.donate-float-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -2px 2px 12px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.donate-float-toggle:hover { background: #c8922a; }

.donate-float-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 4px 28px rgba(0,0,0,0.18);
  padding: 28px 24px 20px;
  width: 380px;
  position: relative;
  margin-top: 10px;
}
.donate-float-panel.open { display: flex; }

.donate-float-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
}
.donate-float-close:hover { color: var(--navy); }

.donate-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 12px;
}

.donate-qr-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.donate-upi {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
}
.donate-upi strong { color: var(--navy); }

.donate-note {
  margin-top: 8px;
  font-size: 0.73rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .donate-float-panel { width: 300px; padding: 20px 16px 16px; }
  .donate-qr-img { width: 260px; height: 260px; }
}

@media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .founders-grid { grid-template-columns: 1fr; } }

/* ── Lightbox ──────────────────────────────────────────── */
.dcc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
}
.dcc-lightbox.active { display: flex; }
.dcc-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  object-fit: contain;
}
.dcc-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.dcc-lightbox-close:hover { background: rgba(255,255,255,0.3); }
