/* ============================================================
   BRIDGE PAGE — style.css
   Mobile-first, plain CSS, no framework, no JavaScript.
   ============================================================ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #f7f6f4;
  color: #2c2c2c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Disclosure bar ---- */
.disclosure-bar {
  background-color: #eee9e2;
  border-bottom: 1px solid #ddd7cf;
  padding: 1.15rem 1.5rem;
  text-align: center;
  font-size: 0.94rem;
  color: #555;
}

.disclosure-bar p {
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Main container / card ---- */
.container {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 2.5rem auto;
  padding: 2rem 1.25rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

/* ---- Community label ---- */
.community-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a7e70;
  margin-bottom: 1rem;
}

/* ---- Headings ---- */
h1 {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 1.35rem;  /* slightly up */
}

h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;   /* slightly up from 0.75rem */
}

h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Paragraphs ---- */
p {
  color: #3d3d3d;
  margin-bottom: 1rem;     /* up from 0.9rem for better rhythm */
}

p:last-child {
  margin-bottom: 0;
}

.intro {
  font-size: 1.075rem;     /* slightly up from 1.05rem */
  color: #3a3a3a;
}

/* ---- Sections ---- */
section {
  padding: 0.35rem 0;      /* slightly up from 0.25rem */
}

section p:last-child {
  margin-bottom: 0;
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid #ede8e1;
  margin: 2.25rem 0;       /* slightly up from 2rem */
}

/* ---- CTA button ---- */
.cta-wrap {
  text-align: center;
  margin: 2rem 0;          /* slightly up from 1.75rem */
}

.btn {
  display: inline-block;
  background-color: #5a7d6e;   /* soft teal-green accent — easy to change */
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.95rem 2.25rem;    /* slightly more padding than before (0.85rem 2rem) */
  border-radius: 6px;
  min-width: 240px;            /* slightly wider than 220px */
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn:hover,
.btn:focus {
  background-color: #4a6d5e;
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid #5a7d6e;
  outline-offset: 3px;
}

/* ---- Affiliate disclosure block ---- */
.affiliate-disclosure {
  background-color: #f2efe9;   /* slightly warmer/darker than before (#f7f6f4) */
  border: 1px solid #d9d2c8;   /* slightly more contrast than before (#ede8e1) */
  border-radius: 6px;
  padding: 1.35rem 1.5rem;     /* up from 1.1rem 1.25rem */
}

.affiliate-disclosure h3 {
  margin-bottom: 0.4rem;
}

.affiliate-disclosure p {
  font-size: 0.9rem;            /* up from 0.88rem */
  color: #5a5a5a;               /* slightly darker than before (#666) */
  margin-bottom: 0;
}

/* ---- Footer ---- */
.site-footer {
  padding: 1.75rem 1.25rem 2.25rem;  /* slightly more breathing room */
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;           /* slightly wider gap between links */
}

.footer-links a {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #4a6d5e;
  border-bottom-color: #4a6d5e;
}

/* ---- Responsive tweaks ---- */
@media (min-width: 640px) {
  .container {
    padding: 3rem 3.25rem;     /* slightly more padding than before (2.75rem 3rem) */
    margin: 3rem auto;
  }

  h1 {
    font-size: 1.9rem;
  }
}
