/* CVL — Colombian Volunteer Ladies, Inc. */
/* Design: warm editorial nonprofit — Playfair Display + Inter */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── tokens ── */
:root {
  --navy: #1B365D;
  --navy-light: #264573;
  --gold: #D4A843;
  --gold-soft: #F0DFB8;
  --gold-bg: #FBF6EC;
  --coral: #E8693C;
  --green: #2D8A56;
  --green-bg: #E8F5ED;
  --bg: #FAFAF7;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --text-2: #4A4A4A;
  --text-3: #7A7A7A;
  --border: #E8E6E1;
  --border-strong: #D0CEC8;
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-w: 1120px;
  --transition: 0.25s ease;
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.6;
}

/* ── top bar ── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.9); transition: color var(--transition); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 12px; align-items: center; }
.lang-switch {
  display: inline-flex;
  gap: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 2px;
}
.lang-switch a {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  transition: all var(--transition);
}
.lang-switch a.active {
  background: rgba(255,255,255,.2);
  color: #fff;
}

/* ── navbar ── */
.navbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: var(--bg);
}
.btn-donate {
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-donate:hover { background: #d45a2e; transform: translateY(-1px); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── hero ── */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 60%, #3a6a94 100%);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,168,67,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,255,255,.04) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-actions .btn-primary:hover { background: #e0b650; transform: translateY(-1px); }
.hero-actions .btn-secondary {
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}
.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

/* decorative circles */
.hero-deco {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: .06;
}
.hero-deco circle { stroke: #fff; fill: none; stroke-width: 0.5; }

/* ── impact strip ── */
.impact-strip {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.impact-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.impact-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.impact-item:last-child { border-right: none; }
.impact-item:hover { background: var(--gold-bg); }
.impact-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-label {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
}

/* ── mission ── */
.mission { background: var(--bg); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.mission-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.mission-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212,168,67,.1);
  transform: translateY(-2px);
}
.mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.mission-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── about / history ── */
.about {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.about-image {
  background: linear-gradient(135deg, var(--gold-bg), #f0e8d8);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border: 1px solid var(--border);
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-text .highlight {
  background: var(--gold-bg);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px;
  color: var(--text-2);
  margin-top: 20px;
  font-style: italic;
}

/* ── president ── */
.president {
  background: var(--bg);
}
.president-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.president-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bg), var(--gold-soft));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  border: 3px solid var(--gold-soft);
}
.president-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.president-info .title {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.president-info p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── events ── */
.events { background: var(--card); border-top: 1px solid var(--border); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.event-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--bg);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.event-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.event-body {
  padding: 20px;
}
.event-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.event-body p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}
.event-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 10px;
}

/* ── chapters ── */
.chapters { background: var(--bg); }
.chapters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.chapter-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.chapter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.chapter-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.chapter-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.chapter-card .since {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.chapter-card .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chapter-card .contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
}
.chapter-card .contact-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--gold);
}

/* ── transparency ── */
.transparency {
  background: var(--card);
  border-top: 1px solid var(--border);
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-badge {
  background: var(--green-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid #c8e6d4;
}
.trust-badge .icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.trust-badge .icon svg { width: 22px; height: 22px; fill: #fff; }
.trust-badge h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.trust-badge p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-banner .btn-primary:hover { background: #e0b650; transform: translateY(-1px); }

/* ── footer ── */
.footer {
  background: #0F1F33;
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
.footer p { font-size: 14px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* ── process / how it works ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
}
.process-step h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ── contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--card);
  color: var(--text);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-submit {
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition);
  align-self: flex-start;
}
.contact-form .btn-submit:hover { background: var(--navy-light); }

/* ── donate page ── */
.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.donate-amount {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.donate-amount:hover, .donate-amount.selected {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.donate-amount .amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}
.donate-amount .desc {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
}

/* ── scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── responsive ── */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    z-index: 99;
  }
  .hero h1 { font-size: 32px; }
  .hero { min-height: 400px; }
  .hero-deco { display: none; }
  .impact-strip .container { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: none; }
  .mission-grid,
  .about-grid,
  .chapters-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 60px 0; }
  .section-title { font-size: 26px; }
  .president-card { flex-direction: column; text-align: center; }
  .about-grid { gap: 30px; }
  .donate-options { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .impact-strip .container { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .donate-options { grid-template-columns: 1fr; }
}

/* ── hero with photo background ── */
.hero--photo {
  background: url('/img/hero-header.jpg') center/cover no-repeat;
  position: relative;
  min-height: 520px;
}
.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27,54,93,.88) 0%,
    rgba(27,54,93,.7) 45%,
    rgba(27,54,93,.3) 70%,
    rgba(27,54,93,.15) 100%
  );
}
.hero--photo .hero-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero--photo::before {
    background: rgba(27,54,93,.75);
  }
}
