/* ====== TYPOGRAPHY BASE — DYSON FORESTRY (Cyber-Neon) ======
   - Headings: Bebas Neue (display)
   - Text: Manrope (body)
   - Dark base + orange/red accents
   - Keep your class names, but adapt look to site palette
*/

:root{
  /* If these already exist in your project — keep one source of truth */
  --df-bg: #0b0d10;
  --df-ink: rgba(255,255,255,.92);
  --df-ink2: rgba(255,255,255,.72);
  --df-muted: rgba(255,255,255,.62);

  --df-accent: #ff3b2f;   /* red-orange */
  --df-accent2:#ff8a00;   /* orange */
  --df-good: #31ff9c;     /* neon mint (optional for gradients) */

  --df-h: "Bebas Neue", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --df-t: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ====== H1 ====== */
.defaultH1{
  font-family: var(--df-h);
  font-weight: 400; /* Bebas is display; keep clean */
  font-size: 86px;
  line-height: .92;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0;
  color: var(--df-ink);
  text-shadow: 0 0 24px rgba(255,138,0,.10);
}

/* ====== H2 ====== */
.defaultH2{
  font-family: var(--df-h);
  font-weight: 400 !important;
  font-size: 58px !important;
  line-height: .96 !important;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .10em;

  /* Cyber-Neon: warm gradient */
  background: linear-gradient(90deg, var(--df-accent), var(--df-accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== H3 ====== */
.defaultH3{
  font-family: var(--df-h);
  font-size: 34px !important;
  margin: 0 0 8px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.90);
}

/* ====== H4 ====== */
.defaultH4{
  font-family: var(--df-t);
  font-size: 18px !important;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: rgba(255,255,255,.82);
}

/* ====== BODY TEXT + LISTS ====== */
.defaultP,
li{
  font-family: var(--df-t);
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 600; /* Manrope 600 reads premium on dark */
  margin: 0;
  color: rgba(255,255,255,.72);
}

/* Spacing rules (kept, tuned slightly) */
section h2{
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}
section h2 + p{
  margin: 0 !important;
  margin-bottom: 18px !important;
}

/* Sections in left column (kept) */
.left section{
  padding: 10px 0 !important;
  margin-bottom: 0 !important;
}
.left-title{
  margin-block: 40px;
}

/* ====== ADAPTIVE ====== */
@media screen and (width < 1100px){
  .defaultH1{
    font-size: 72px !important;
    line-height: .95;
    letter-spacing: .09em;
  }
  .defaultH2{
    font-size: 48px !important;
    letter-spacing: .09em;
  }
  .defaultH3{
    font-size: 30px !important;
  }
  .defaultH4{
    font-size: 17px !important;
  }
  .defaultP,
  li{
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  section h2{
    margin-bottom: 16px !important;
  }
}

/* tablets */
@media screen and (width < 700px){
  .defaultH1{
    font-size: 56px !important;
    letter-spacing: .08em;
  }
  .defaultH2{
    font-size: 40px !important;
  }
  .defaultH3{
    font-size: 26px !important;
  }
  .defaultH4{
    font-size: 16px !important;
  }
  .defaultP,
  li{
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
}

/* phones */
@media screen and (width < 500px){
  .defaultH1{
    font-size: 48px !important;
    letter-spacing: .07em;
  }
  .defaultH2{
    font-size: 34px !important;
    letter-spacing: .08em;
  }
  .defaultH3{
    font-size: 22px !important;
  }
  .defaultH4{
    font-size: 15px !important;
  }
  .defaultP,
  li{
    font-size: 14px !important;
  }
}

/* very small screens */
@media screen and (width < 380px){
  .defaultH1{
    font-size: 42px !important;
  }
  .defaultH2{
    font-size: 30px !important;
  }
  .defaultH3{
    font-size: 20px !important;
  }
}
