/* COMMUNITY SOLIDARITY THEME */

body {
  margin: 0;
  padding: 40px;
  background-color: #0f1f2e; /* deep calm navy */
  color: #f4f7f5; /* soft off-white */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

/* Main heading */
h1 {
  color: #7fd1a0; /* soft safety green */
  font-size: 2.2em;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Paragraphs */
p {
  font-size: 1.1em;
  max-width: 700px;
}

/* Links */
a {
  color: #7fd1a0;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #7fd1a0;
  transition: all 0.2s ease;
}

a:hover {
  color: #0f1f2e;
  background-color: #7fd1a0;
  padding: 2px 6px;
  border-radius: 4px;
}

/* QR image styling */
img {
  margin-top: 25px;
  max-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Optional subtle container for structure */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(127, 209, 160, 0.08), transparent 60%);
  pointer-events: none;
}
