/* Base */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
  background: #fafafa;
  line-height: 1.6;
}

a {
  color: #2a2a85;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px; /* explicit height prevents layout jumps */
  width: auto;
  display: block;
}

.main-nav {
  margin-left: auto;
}

/* Updated menu style: softer grey, cleaner font */
.main-nav a {
  margin-left: 22px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #666;
  text-decoration: none;
}

.main-nav a:hover {
  color: #333;
  text-decoration: none;
}

.main-nav a.active {
  color: #333;
  text-decoration: none;
  border-bottom: 2px solid #777;
  padding-bottom: 2px;
}

/* Optional: if you decide the original menu was uppercase, uncomment this
.main-nav a {
  text-transform: uppercase;
  font-size: 0.88rem;
}
*/

/* Banner (Option A: never crop, no fixed height, no letterboxing) */
.banner {
  width: 100%;
  background-color: #fff;
  display: block;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.content p {
  margin-bottom: 20px;
}

.intro {
  font-size: 1.05rem;
}

/* Button row: centred by default so Home buttons sit closer together */
.button-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 28px auto;
  flex-wrap: wrap;
}

/* Kept for compatibility - still useful if you want an explicit class */
.button-row.center {
  justify-content: center;
}

/* Buttons: changed to neutral grey */
.button {
  display: inline-block;
  padding: 10px 18px;
  background: #6f6f6f;
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
}

.button:hover {
  background: #595959;
}

.donate {
  margin-top: 30px;
}

/* Long-form content pages */
.content-page {
  text-align: left;
}

.page-title {
  text-align: center;
  margin: 0 0 22px;
  color: #333;
  font-size: 1.6rem;
}

.notice {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-left: 4px solid #6f6f6f;
  padding: 14px 16px;
  border-radius: 4px;
}

blockquote {
  margin: 26px 0;
  padding: 14px 18px;
  background: #fff;
  border-left: 4px solid #ddd;
  border-radius: 4px;
}

.quote-attrib {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
}

/* Links page list */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-left: 4px solid #6f6f6f;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.link-title {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 6px;
}

.link-list p {
  margin: 8px 0 0;
}

/* Footer */
.site-footer {
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.8rem;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 750px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    margin-left: 0;
    margin-top: 10px;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 15px;
  }

  .button-row {
    gap: 18px;
  }
}