/*
Theme Name: Homeless Angels Landing Page
Theme URI: https://homelessangels.org/
Author: Homeless Angels
Description: A simple, responsive landing page for Homeless Angels.
Version: 2.0.0
Text Domain: homeless-angels
*/

:root {
  --ha-blue: #0676bd;
  --ha-blue-dark: #045f98;
  --ha-sky: #65c4eb;
  --ha-ink: #1c2730;
  --ha-muted: #56636d;
  --ha-line: #d9e1e6;
  --ha-surface: #ffffff;
  --ha-page: #f5f8fa;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: transparent;
  color: var(--ha-ink);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.7;
  text-align: center;
}

a { color: inherit; }

.site-main { min-height: 100vh; }

.hero {
  display: grid;
  min-height: clamp(360px, 60vh, 620px);
  place-items: center;
  padding: 44px 24px;
  background: transparent;
}

.hero__logo {
  display: block;
  width: min(560px, 82vw);
  height: auto;
}

.content-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 72px;
}

.intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.intro p {
  margin: 0 0 24px;
  color: var(--ha-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.intro .construction-notice {
  color: var(--ha-blue);
  font-weight: 700;
}

h3,
.wp-block-heading.is-style-callout,
.construction-notice {
  color: var(--ha-blue);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ha-blue);
  border-radius: 6px;
  padding: 12px 25px;
  background: var(--ha-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
  border-color: var(--ha-blue-dark);
  background: var(--ha-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.button:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 3px solid rgba(101, 196, 235, .55);
  outline-offset: 3px;
}

.donate-button {
  min-width: 190px;
  margin-top: 8px;
  font-size: 1.08rem;
}

.donate-button .wp-block-button__link {
  min-width: 190px;
  font-size: 1.08rem;
}

.campus-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--ha-line);
  border-radius: 14px;
  background: var(--ha-surface);
  box-shadow: 0 14px 40px rgba(24, 50, 68, .08);
}

.campus {
  padding: 42px clamp(24px, 5vw, 52px);
  text-align: center;
}

.campus + .campus { border-left: 1px solid var(--ha-line); }

.campus h2 {
  margin: 0 0 12px;
  color: var(--ha-ink);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  line-height: 1.25;
}

.campus__phone {
  margin: 0 0 8px;
  color: #000;
  font-size: 1.08rem;
  font-weight: 700;
}

.campus address,
.campus__address {
  min-height: 58px;
  margin: 0 0 24px;
  color: var(--ha-muted);
  font-size: 1.04rem;
  font-style: normal;
}

.campus__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.campus__actions .button,
.campus__actions .wp-block-button { flex: 1 1 155px; }

.wp-block-button__link {
  border-radius: 6px;
}

.hero__image { margin: 0; }
.wp-block-columns { margin-bottom: 0; }

.footer-notice {
  margin-top: 34px;
  color: var(--ha-muted);
  font-size: .95rem;
  text-align: center;
}

.footer-notice p { margin: 0; }

@media (max-width: 720px) {
  .hero { min-height: 340px; }
  .content-shell { width: min(100% - 28px, 1040px); padding: 46px 0 52px; }
  .campus-card { grid-template-columns: 1fr; margin-top: 48px; }
  .campus + .campus { border-top: 1px solid var(--ha-line); border-left: 0; }
  .campus { padding: 34px 22px; }
  .campus address { min-height: 0; }
}
