/* Layout/styles copied from Wordpress Site/Mock/styles.css for theme use */

/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #161515;
  background-color: #f4ecdd;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Georgia", "Times New Roman", serif;
  margin-top: 0;
}

p {
  line-height: 1.6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #15110f;
  color: #f7e6b5;
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.main-nav a:hover {
  background-color: rgba(247, 230, 181, 0.12);
  text-decoration: none;
}

.main-nav a[href="#registration"] {
  background-color: #af3a28;
  color: #fff6e0;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(89, 25, 12, 0.5);
}

.main-nav a[href="#registration"]:hover {
  background-color: #c44a34;
}

.nav-donate {
  border: 1px solid rgba(247, 230, 181, 0.5);
  font-weight: 500;
}

.nav-donate:hover {
  background-color: rgba(247, 230, 181, 0.1);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top left, #fdf5dd 0, #f4ecdd 55%, #e3d6bf 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #765018;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: #1a1510;
}

.hero-subtitle {
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.hero-footnote {
  font-size: 0.9rem;
  color: #5b4a30;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-wrapper {
  background: radial-gradient(circle at center, #15110f 0, #15110f 45%, #bf5b36 46%, #bf5b36 60%, transparent 61%);
  padding: 1.2rem;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-badge {
  display: block;
  width: min(260px, 60vw);
  border-radius: 50%;
}

.hero-map-hint {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6e5a3a;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background-color: #af3a28;
  border-color: #af3a28;
  color: #fff6e0;
  box-shadow: 0 8px 18px rgba(89, 25, 12, 0.45);
}

.btn-primary:hover {
  background-color: #c44a34;
  border-color: #c44a34;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border-color: #8a5a21;
  color: #5a3d16;
}

.btn-outline:hover {
  background-color: rgba(138, 90, 33, 0.08);
  text-decoration: none;
}

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Strip */
.strip {
  background-color: #15110f;
  color: #f7e6b5;
  padding: 1.75rem 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.strip-item h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}

.strip-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #ece0cb;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-link {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-align: center;
  color: #654821;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.step {
  background-color: #f8f0df;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(158, 119, 59, 0.3);
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #8a5a21;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #8a5a21;
}

.step h3 {
  font-size: 1.05rem;
}

/* Cards / Columns */
.columns-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: flex-start;
}

/* Who We Serve: dedicated single-card layout, not tied to columns-2 */
.who-serve-single {
  display: flex;
  justify-content: center;
}

.who-serve-single .card {
  width: 100%;
}

.card {
  background-color: #f8f0df;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(158, 119, 59, 0.35);
}

/* Why This Fund Matters story block */
#why-it-matters .story.card {
  background-color: transparent;
  border: none;
  padding: 0;
  text-align: center;
}

.card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.card li {
  margin-bottom: 0.25rem;
}

/* Stats & story */
.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background-color: #f8f0df;
  border-radius: 0.9rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(158, 119, 59, 0.35);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8a5a21;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.support-card h3 {
  margin-bottom: 0.4rem;
}

/* Donate placeholder */
.donate-placeholder {
  background-color: #15110f;
  color: #f7e6b5;
}

.donate-placeholder .section-header p {
  color: #f7e6b5;
}

/* Newsletter */
.newsletter {
  background-color: #e4d7c0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.newsletter-form {
  background-color: #f8f0df;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(158, 119, 59, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.newsletter-form label {
  font-size: 0.9rem;
  font-weight: 600;
}

.newsletter-form input,
.newsletter-form select {
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #b69a63;
  font-size: 0.95rem;
}

.newsletter-note {
  font-size: 0.8rem;
  color: #6a5432;
}

/* Footer */
.site-footer {
  background-color: #15110f;
  color: #f7e6b5;
  padding: 1.75rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  padding: 0.1rem 0;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  max-width: 16rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .columns-2 {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.5rem;
  }
}
