/* Chicago Burmese Community Center — site styles
   Deep indigo with an amber accent, humanist sans throughout.
   Deliberately unlike the other sites in this portfolio: not the teal/green
   serif of lansingsomalibantu.org, not the blue/coral geometric of mvsbca.org. */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --indigo-900: #16224a;
  --indigo-700: #26386e;
  --indigo-500: #3f5599;
  --amber: #e8a33d;
  --amber-dark: #c9861f;
  --ink: #1a1f2e;
  --slate: #5c6579;
  --line: #e2e5ee;
  --paper: #f7f8fb;
  --white: #fff;
  --max: 1120px;
  --radius: 12px;
  --display: "Manrope", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--white); line-height: 1.7; font-size: 17px; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--display); color: var(--indigo-900); line-height: 1.18; font-weight: 800; letter-spacing: -.015em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.05rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--indigo-500); }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.bg-paper { background: var(--paper); }
.bg-indigo { background: var(--indigo-900); color: #c9d3ec; }
.bg-indigo h2, .bg-indigo h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.14rem; color: var(--slate); max-width: 64ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.site-header { border-bottom: 1px solid var(--line); background: var(--white); position: sticky; top: 0; z-index: 20; }
.nav { max-width: var(--max); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--indigo-900); text-decoration: none; }
.brand__mark { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--indigo-900); color: var(--amber); font-family: var(--display); font-weight: 800; font-size: .92rem; display: grid; place-items: center; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1rem; line-height: 1.25; }
.brand__name span { display: block; font-family: var(--body); font-weight: 400; font-size: .78rem; color: var(--slate); }
.nav__links { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav__links a:hover { color: var(--indigo-500); }
.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; font-size: 1.3rem; padding: 2px 10px; cursor: pointer; }

.hero { background: var(--paper); padding: 96px 0 104px; }
.hero h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero .lead { font-size: 1.2rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: .96rem; }
.btn--amber { background: var(--amber); color: #2b1d05; }
.btn--amber:hover { background: var(--amber-dark); text-decoration: none; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; border-top: 3px solid var(--amber); }
.card p:last-child { margin-bottom: 0; }

.contact-block h3 { color: var(--indigo-900); }
.contact-block p { color: var(--slate); margin-bottom: .6em; }

.quote { border-left: 4px solid var(--amber); padding: 6px 0 6px 22px; margin: 0; font-size: 1.12rem; color: var(--slate); max-width: 70ch; }

.site-footer { background: var(--indigo-900); color: #a6b4d6; padding: 46px 0 30px; font-size: .93rem; }
.site-footer a { color: #d6e0f7; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer__name { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: #fff; margin: 0; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; color: #a6b4d6; }
.site-footer hr { border: 0; border-top: 1px solid #2c3c6e; margin: 28px 0; }
.footer__legal { text-align: center; font-size: .86rem; color: #8d9cc4; }
.footer__legal p { margin: 0 0 .5em; }

@media (max-width: 860px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .nav__toggle { display: block; }
  .nav__links { display: none; width: 100%; flex-direction: column; gap: 12px; padding: 12px 0 4px; }
  .nav__links.is-open { display: flex; }
  .nav { flex-wrap: wrap; }
}
