/* ─── Fonts & Reset ───────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "Figtree", sans-serif;
  line-height: 1.5;
  color: #231f20;
  background: #f8f7f3;
  background-image: url("https://cdn.glitch.me/4efea6eb-db2e-4822-88f0-48f162c35f96/AdobeStock_546184254%202%20Edited.png?v=1751947038649"); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ─── Header ───────────────────────────────────────── */
.header {
  padding: 1.5rem;
  text-align: center;
}

.header h4 {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #231F20;
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  background: #f8f7f3;
  background-image: linear-gradient(rgba(248, 247, 243, 0.75), rgba(248, 247, 243, 0.75)), url("https://cdn.glitch.me/4efea6eb-db2e-4822-88f0-48f162c35f96/AdobeStock_546184254%20Edited.png?v=1751950621814"); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 4rem 1rem;
  margin-top: 0;
  color: #231F20;
}

.hero mark{
  padding: 1rem;
  background: linear-gradient(-100deg, hsla(48, 27%, 96%, 0.3), hsla(48, 27%, 96%, 0.7) 95%, hsla(48, 27%, 96%, 0.1));
}

.hero h1 {
  font-family: "Figtree", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  line-height: 4rem;
}

.hero button {
  font-family: "Figtree", sans-serif;
  font-weight:600;
  border: none;
  color: #231F20;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 1rem;
  cursor: pointer;
  background: #BFD7EA;
  border-radius: 3rem;
  transition: all 0.3s ease;
}

.hero button:hover {
  border: .15rem solid #BFD7EA;
  background: transparent;
  color: none;
}

.hero .lead {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ─── Card ───────────────────────────────────────── */
.card {
  background: #f8f7f3;
  background-image: linear-gradient(rgba(248, 247, 243, 0.50), rgba(248, 247, 243, 0.50)), url("https://cdn.glitch.me/4efea6eb-db2e-4822-88f0-48f162c35f96/AdobeStock_546184254%20Edited.png?v=1751950621814"); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 720px;
  margin: -3rem auto 3rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}

.card h2 {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #231F20;
  margin-bottom: 1rem;
}

.letter-body p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #231F20;
}

/* Signatories */
.signatories {
  list-style: none;
  margin-top: 1rem;
}

.signatories li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  font-size: 1rem;
}

.signatories li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  top: 0;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  background-image: linear-gradient(rgba(248, 247, 243, 0.75), rgba(248, 247, 243, 0.75)), url("https://cdn.glitch.me/4efea6eb-db2e-4822-88f0-48f162c35f96/AdobeStock_546184254%20Edited.png?v=1751950621814"); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  color: black;
  margin-top: -6rem;
}

footer p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

footer a.foot {
  color: #231f20;
  text-decoration: underline;
}

footer img {
  width: 25%;
  margin-top: 1rem;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
  .bullhorn {
    width: 100px;
    margin-left: 50px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .lead {
    font-size: 0.95rem;
  }
  .card {
    margin: -1.5rem 1rem 2rem;
    padding: 1.5rem;
  }
  .card h2 {
    font-size: 1.5rem;
  }
}
.sign {
  color: white;
}

.ref {
  color: black;
}

/* ─── Font weights ───────────────────────────────── */
body,
p,
li,
.header h4,
.hero .lead {
  font-weight: 400; /* body weight */
}

.hero h1,
.card h2 {
  font-weight: 900; /* title weight */
}

strong,
b {
  font-weight: 700; /* bolded weight */
}

/* ─── Mobile tweaks ──────────────────────────────── */
@media (max-width: 600px) {
  .hero h1 {
    line-height: 2.5rem; /* closer to desktop spacing */
  }

  footer img {
    width: 100%;       /* fill the mobile viewport */
    max-width: none;   /* override desktop constraint */
  }
}
