/*
Theme Name: Winner FBC Fresh
Theme URI: https://winnerfbc.org
Author: You
Description: Fresh redesign for First Baptist Church of Winner, SD, inspired by Risen but modernized.
Version: 1.0
Text Domain: winnerfbc-fresh
*/

:root {
  --wfbc-bg: #f4f5f7;
  --wfbc-surface: #ffffff;
  --wfbc-primary: #12314a;
  --wfbc-accent: #f7b500;
  --wfbc-text: #222;
  --wfbc-muted: #6c7a89;
  --wfbc-radius: 10px;
}

/* Base */
body {
  margin: 0;
  background: var(--wfbc-bg);
  color: var(--wfbc-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4, .site-title a {
  font-family: "Alice", "Times New Roman", serif;
  letter-spacing: 0.02em;
}

a {
  color: #005b8e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Layout containers */
.container {
  width: min(1100px, 94%);
  margin: 0 auto;
}

/* Header */
.site-header {
  background: var(--wfbc-primary);
  color: #fff;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.1rem 0;
}
.site-title a {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 400;
}
.site-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
}
.donate-btn, .button-primary {
  background: var(--wfbc-accent);
  color: #000;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
}
.donate-btn:hover {
  text-decoration: none;
  filter: brightness(0.98);
}

/* Hero (front page) */
.hero {
  background: linear-gradient(140deg, #12314a 0%, #1f4e6f 100%);
  color: #fff;
  padding: 3.3rem 0 3.6rem;
  text-align: left;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  margin-bottom: -2.8rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 0.7rem;
}
.hero p {
  max-width: 45rem;
}

/* Content shell */
.content-wrap {
  background: transparent;
  padding: 3.5rem 0 3.5rem;
}
.content-area {
  background: var(--wfbc-surface);
  padding: 2.2rem 2rem 2.7rem;
  border-radius: var(--wfbc-radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

/* Footer */
.site-footer {
  background: #0e2432;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Donate box */
.donate-box {
  background: #fff4d6;
  border: 1px solid rgba(0,0,0,0.03);
  padding: 1.4rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.donate-box h2 {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 820px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav ul {
    flex-wrap: wrap;
  }
  .hero {
    text-align: left;
  }
}
