:root {
  --red: #C41E3A;
  --red-dark: #9B1830;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #666666;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container { background: var(--white); padding: 0.5rem; }

.logo-placeholder {
  width: 120px;
  height: 80px;
  background: var(--gray-light);
  border: 2px dashed var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.875rem;
}

.logo {
  height: 70px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--black);
  font-weight: 600;
  padding: 0.5rem;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--red); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--black);
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary, .btn-donate {
  background: var(--red);
  color: var(--white) !important;
}

.btn-primary:hover, .btn-donate:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), var(--gray);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-content { max-width: 800px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; }
.hero .btn { margin: 0.5rem; }

/* Sections */
.section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }

.section-dark { background: var(--black); color: var(--white); }
.section-dark .section { max-width: 100%; }

.section-gray { background: var(--gray-light); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2rem; color: var(--red); margin-bottom: 0.5rem; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card-image {
  height: 200px;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  border-bottom: 3px solid var(--red);
}

.card-content { padding: 1.5rem; }
.card-content h3 { color: var(--black); margin-bottom: 0.75rem; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 2rem;
}

.stat-number { font-size: 3rem; font-weight: 700; color: var(--red); }
.stat-label { font-size: 1rem; opacity: 0.9; }

/* Bank Details */
.bank-details-card {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.bank-details-card h3 { color: var(--red); margin-bottom: 1.5rem; text-align: center; }

.bank-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  gap: 1rem;
}

.bank-row:last-of-type { border-bottom: none; }

.bank-label { 
  font-weight: 600; 
  color: var(--gray);
  flex-shrink: 0;
}

.bank-value { 
  text-align: right;
  word-break: break-word;
}

/* Bank Accounts Grid (for multiple accounts side by side) */
.bank-accounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bank-accounts .bank-details-card {
  max-width: 100%;
  padding: 2rem 2.5rem;
}

.bank-accounts .bank-details-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.bank-accounts .bank-row {
  padding: 0.875rem 0;
}

.bank-accounts .bank-label {
  font-size: 0.9rem;
}

.bank-accounts .bank-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
}

/* Image Placeholder */
.image-placeholder {
  background: var(--gray-light);
  border: 2px dashed var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.875rem;
  min-height: 200px;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-content h2 { color: var(--red); margin-bottom: 1rem; }

/* Footer */
.site-footer { background: var(--black); color: var(--white); padding: 3rem 2rem 1rem; }

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 { color: var(--red); margin-bottom: 1rem; font-size: 1.1rem; }

.scripture { font-style: italic; opacity: 0.9; }
.scripture-ref { margin-top: 0.5rem; font-size: 0.875rem; }

.footer-section a { color: var(--white); }
.footer-section a:hover { color: var(--red); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #1877f2;
  border-radius: 4px;
  color: var(--white) !important;
  transition: opacity 0.3s;
}

.social-link:hover { opacity: 0.9; color: var(--white); }

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Page Header */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.page-header p { opacity: 0.9; }

/* Mobile */
@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    gap: 0;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem; border-bottom: 1px solid var(--gray-light); }
  
  .two-col { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
  
  .bank-accounts { grid-template-columns: 1fr; }
}

/* Section Images */
.section-image {
  border-radius: 8px;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Card Images */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}