/* --- Core Styles --- */
:root {
  --primary: #1e40af;
  --accent: #dc2626;
  --dark: #111827;
  --light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Merriweather', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Navigation --- */
.navbar { position: fixed; top: 0; width: 100%; background: white; z-index: 1000; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.nav-logo a { font-weight: 700; color: var(--primary); text-decoration: none; font-size: 1.5rem; font-family: 'Merriweather', serif; }
.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-link { text-decoration: none; color: #4b5563; font-weight: 600; }
.donate-btn { background: var(--accent); color: white !important; padding: 0.5rem 1.2rem; border-radius: 5px; }

/* --- Hero --- */
.hero { background: linear-gradient(135deg, var(--primary), var(--dark)); color: white; padding: 140px 0 80px; min-height: 80vh; display: flex; align-items: center; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.video-container { width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.video-container iframe { width: 100%; height: 100%; border: none; }
.placeholder-link { text-align: center; margin-top: 0.5rem; font-size: 0.8rem; }
.placeholder-link a { color: #fbbf24; text-decoration: none; }

/* --- Platform & Vision --- */
.about { padding: 80px 0; background: var(--light); text-align: center; }
.about-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.point { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.point .icon { font-size: 2.5rem; margin-bottom: 1rem; }

.vision-flex { display: flex; flex-wrap: wrap; gap: 4rem; align-items: center; padding: 80px 0; }
.vision-image-container { flex: 1; min-width: 300px; }
.main-portrait { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.vision-text { flex: 1.2; min-width: 300px; }
.main-quote { font-size: 1.8rem; font-family: 'Merriweather', serif; color: var(--primary); font-style: italic; margin-bottom: 2rem; border-left: 5px solid var(--accent); padding-left: 1.5rem; }
.cta-line { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

/* --- Form --- */
.contact { background: var(--primary); color: white; padding: 80px 0; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { background: rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 12px; backdrop-filter: blur(5px); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border-radius: 5px; border: none; }

/* --- Buttons --- */
.btn { padding: 1rem 2rem; border-radius: 5px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--accent); color: white; }
.btn-secondary { border: 2px solid white; color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(220,38,38,0.3); }

/* --- Animations --- */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* --- Mobile Nav --- */
.hamburger { display: none; flex-direction: column; cursor: pointer; background: none; border: none; }
.bar { width: 25px; height: 3px; background: var(--primary); margin: 2px 0; transition: 0.4s; }

@media (max-width: 768px) {
  .hero-content, .contact-content { grid-template-columns: 1fr; text-align: center; }
  .nav-menu { position: fixed; left: -100%; top: 70px; background: white; width: 100%; flex-direction: column; padding: 2rem; transition: 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
  .nav-menu.active { left: 0; }
  .hamburger { display: flex; }
}