/* SHE Website - DARK GREEN + GOLDEN Complete Design */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1A4035;        /* DARKER GREEN */
  --secondary: #2E5B4A;      
  --accent: #D4A017;         /* GOLDEN */
  --light: #F8F9FA;
  --dark: #0F2A24;
  --gradient: linear-gradient(135deg, #1A4035 0%, #2E5B4A 50%, #4A9C8F 100%);
  --golden: #D4A017;
  --golden-hover: #E6B800;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* DARKER GREEN HEADER */
header {
  background: rgba(26, 64, 53, 0.95);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26, 64, 53, 0.4);
  transition: all 0.3s ease;
}

header.scrolled { 
  background: rgba(26, 64, 53, 1); 
  box-shadow: 0 4px 30px rgba(26, 64, 53, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  height: 85px !important;       /* BIGGER: 75px (was 65px) */
  width: auto !important;
  max-width: 240px !important;   /* Wider max-width */
  transition: transform 0.3s ease;
}

.logo img {
  height: 85px !important;
  width: auto !important;
  max-width: 240px !important;
}

.logo:hover { 
  transform: scale(1.08) !important;  /* Bigger hover scale */
}

/* Responsive Logo Sizes */
@media (max-width: 1024px) {
  .logo {
    height: 70px !important;
  }
}

@media (max-width: 768px) {
  .logo {
    height: 65px !important;     /* Mobile: Still big but fits */
  }
}

@media (max-width: 480px) {
  .logo {
    height: 60px !important;     /* Small mobile: Perfect fit */
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--golden) !important;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--golden-hover));
  transition: width 0.3s ease;
}

nav a:hover::after { width: 100%; }
nav a:hover { 
  color: var(--golden-hover) !important; 
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
}

/* GOLDEN HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--golden) !important;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: var(--golden-hover) !important;
  box-shadow: 0 0 5px rgba(212, 160, 23, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 64, 53, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-nav {
  width: 70%;
  max-width: 350px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  height: 100%;
  padding: 2rem;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav a {
  color: var(--golden) !important;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--golden-hover) !important;
  border-bottom-color: var(--golden);
}

/* Hero Section */
.hero {
  background: var(--gradient);
  color: white;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.cta-button:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: var(--light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover { transform: translateY(-10px); }

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label { color: var(--dark); font-weight: 600; margin-top: 0.5rem; }

/* Programs Section */
.programs {
  padding: 80px 0;
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.program-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.program-image {
  height: 200px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image img { transform: scale(1.1); }

.program-content {
  padding: 2rem;
}

.program-content h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.program-content p { color: #666; margin-bottom: 1.5rem; }

.read-more {
  color: var(--golden);
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover { color: var(--golden-hover); }

/* Stories Section */
.stories {
  padding: 80px 0;
  background: var(--gradient);
  color: white;
}

.stories-content { max-width: 800px; margin: 0 auto; text-align: center; }

.stories-content h2 { font-size: 2.5rem; margin-bottom: 2rem; }

.testimonial {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 3rem;
  border-left: 5px solid var(--accent);
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--dark);
  color: white;
  text-align: center;
}

.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cta-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.cta-card:hover { transform: translateY(-5px); }

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* Forms */
input, select, textarea, button {
  font-family: inherit;
}

input, select, textarea {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(46, 91, 74, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul { display: none; }
  
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  
  .container { padding: 0 15px; }
  
  .stats-grid,
  .programs-grid,
  .cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .logo { height: 55px; }
  .hamburger span { width: 24px; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.8s ease forwards; }

.stat-number.animate {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* SEO Styles */
h1, h2, h3 { font-weight: 700; }
