/* ============================================
   FC Bosna - Static HTML/CSS Website
   Modern, Fast, Responsive
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-dark: #1a2e1a;
  --primary-green: #2d5a27;
  --primary-green-light: #3a7a32;
  --accent-yellow: #e8b931;
  --accent-yellow-hover: #d4a520;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #6b7280;
  --bg-light: #f8f8f6;
  --bg-dark: #1e2d1e;
  --bg-card: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Big Shoulders Text', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1280px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent-yellow);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--accent-yellow);
  color: var(--text-dark);
}
.btn-primary:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-yellow);
}
.btn-outline:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--text-light);
}
.btn-dark:hover {
  background: #2a3f2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent-yellow);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-links a:hover { color: var(--primary-green); }
.nav-links a.active { color: var(--primary-green); }

/* Programs dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown .dropdown-toggle .arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary-green);
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.82rem;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 24px 24px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  width: 100%;
  text-align: center;
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--primary-green); }
.mobile-menu .mobile-sub { font-size: 1rem; color: var(--text-muted); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  margin-bottom: 20px;
  color: var(--text-dark);
}
.hero-text h1 span {
  display: block;
}
.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-value-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  animation: float 3s ease-in-out infinite;
}
.hero-value-tag:nth-child(2) { animation-delay: 0.5s; }
.hero-value-tag:nth-child(3) { animation-delay: 1s; }
.hero-value-tag .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-badge {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin-slow 20s linear infinite;
}
.hero-badge-text {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-badge-center {
  animation: spin-reverse 20s linear infinite;
}
.hero-badge-center img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ---------- About Section ---------- */
.about-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 24px;
}
.about-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------- Programs Section ---------- */
.programs-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.programs-header {
  text-align: center;
  margin-bottom: 60px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.program-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-yellow);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.program-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.program-card h4 {
  margin-bottom: 10px;
}
.program-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.program-card .card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-card .card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}
.program-card:hover .card-link::after { transform: translateX(4px); }

/* ---------- Team Photo / Ambition ---------- */
.ambition-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ambition-bg {
  position: absolute;
  inset: 0;
}
.ambition-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ambition-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.ambition-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 60px 24px;
}
.ambition-content .tag {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 28px;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}
.ambition-content h2 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ---------- Camps Section ---------- */
.camps-section {
  padding: 100px 0;
  background: white;
}
.camps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.camps-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.camps-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.camps-image:hover img { transform: scale(1.03); }
.camps-image .badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
}
.camps-text h2 { margin-bottom: 16px; }
.camps-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ---------- Donations Section ---------- */
.donations-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.donations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.donations-left {
  background: var(--primary-green);
  color: white;
  padding: 50px 40px;
}
.donations-left h2 { margin-bottom: 16px; }
.donations-left p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
}
.donations-right {
  background: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.donations-right p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ---------- News Section ---------- */
.news-section {
  padding: 100px 0;
  background: white;
}
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-card-img {
  height: 220px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.08); }
.news-card-body {
  padding: 24px;
}
.news-card-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.news-card-body h4 { margin-bottom: 12px; }
.news-card-body .card-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Tryouts CTA ---------- */
.tryouts-cta {
  background: var(--accent-yellow);
  padding: 80px 0;
  text-align: center;
}
.tryouts-cta h2 {
  margin-bottom: 12px;
  color: var(--text-dark);
}
.tryouts-cta p {
  color: rgba(0,0,0,0.7);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}
.footer-main {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-brand img {
  height: 50px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-green);
  font-size: 0.9rem;
}
.footer-brand .tagline {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 4px;
}
.footer h5 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.footer ul li { margin-bottom: 8px; }
.footer ul li a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer ul li a:hover { color: var(--primary-green); }
.footer .location-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.footer .directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  color: var(--primary-green);
}
.footer .directions-link:hover { color: var(--accent-yellow); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-links a:hover { color: var(--primary-green); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Bottom banner */
.footer-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-banner p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-yellow);
  text-align: center;
  margin: 0;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-header h1 {
  margin-bottom: 12px;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Content Pages ---------- */
.content-section {
  padding: 80px 0;
}
.content-section .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-section h2 { margin-bottom: 20px; }
.content-section h3 { margin-bottom: 12px; font-size: 1.2rem; }
.content-section p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Skills grid for program pages */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-yellow);
}
.skill-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}
.skill-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Coaches Section ---------- */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.coach-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.coach-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--primary-green);
}
.coach-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.coach-card h4 { margin-bottom: 6px; font-size: 1.1rem; }
.coach-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Location info */
.contact-info-card {
  background: var(--bg-dark);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item .icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.map-embed {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
  border: 0;
}

/* ---------- Calendar ---------- */
.calendar-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 60px;
  text-align: center;
}
.calendar-placeholder h3 { margin-bottom: 12px; }
.calendar-placeholder p { color: var(--text-muted); }

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- News Article ---------- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}
.article-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.article-content p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
}
.article-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

/* ---------- Animations / Scroll ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .camps-grid { grid-template-columns: 1fr; }
  .donations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .content-section .content-grid { grid-template-columns: 1fr; }
  .hero-values { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .programs-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .donations-left, .donations-right { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero-values { flex-direction: column; align-items: center; }
  .container { padding: 0 16px; }
}

/* ---------- Loading / Performance ---------- */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.lazy-img.loaded { opacity: 1; }


/* ── Form Feedback Messages ───────────────────────────── */
.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeInMsg 0.3s ease;
}
.form-message--success {
  background: rgba(45, 90, 39, 0.15);
  color: #4ade80;
  border: 1px solid rgba(45, 90, 39, 0.3);
}
.form-message--error {
  background: rgba(220, 38, 38, 0.12);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.25);
}
@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.input-error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.25) !important;
}


/* ---- reCAPTCHA Styling ---- */
.recaptcha-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}

.recaptcha-wrapper .g-recaptcha {
  transform-origin: 0 0;
}

@media (max-width: 480px) {
  .recaptcha-wrapper {
    justify-content: center;
  }
  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center center;
  }
}
