/******************************************************
  skin_HDI-lite.css  
  HDI Light Theme — PCBfabrication.com 2025A
  Version: 2025-11-07C
******************************************************/

/* ===== Theme Variables ===== */
:root {
  --hdi-primary: #0b5e2d;        /* engineering HDI green */
  --hdi-primary-light: #1f8c4d; /* bright HDI green */
  --hdi-bg-light: #f3faf6;      /* ultra-light HDI green tint */
  --hdi-border: #b8e4cd;
  --hdi-text: #1A1A1A;
}

/* ===== Page base ===== */
body {
  color: var(--hdi-text);
  background: #ffffff;
}

/* ===== HERO ===== */
.hdi-hero-light {
  background: var(--hdi-bg-light);
  border: 1px solid var(--hdi-border);
  padding: 36px 28px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.hdi-hero-light h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--hdi-primary);
  margin-bottom: 12px;
}

.hdi-hero-light .lead {
  font-size: 17px;
  margin-bottom: 18px;
  color: #0a4632;
}

.hdi-hero-light .mini-info {
  margin-top: 10px;
  font-size: 14px;
  color: #12663e;
}

/* ===== Buttons ===== */
.btn-primary {
  background: var(--hdi-primary) !important;
  border-color: var(--hdi-primary) !important;
  color: #fff !important;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--hdi-primary-light) !important;
  border-color: var(--hdi-primary-light) !important;
}

.btn-outline {
  border-color: var(--hdi-primary) !important;
  color: var(--hdi-primary) !important;
}

.btn-outline:hover {
  background: var(--hdi-primary) !important;
  color: #fff !important;
}

/* ===== Cards ===== */
.module.card {
  background: #fff;
  border: 1px solid var(--hdi-border);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 26px;
}

.h2 {
  color: var(--hdi-primary);
  font-size: 22px;
  margin-bottom: 14px;
}

/* ===== Checklist bullets (final) ===== */
.checklist {
  list-style-type: none !important;  /* remove default bullets */
  margin: 0;
  padding: 0;
}

.checklist li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-family: Verdana, Arial, sans-serif;
  line-height: 1.55;
}

/* Only show one bullet (green) */
.checklist li::before {
  content: "\2022"; /* bullet dot */
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 18px;
  font-weight: bold;
  color: var(--hdi-primary);
}


/* ===== Tables ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin-top: 10px;
}

.spec-table th {
  background: var(--hdi-primary);
  color: #fff;
  padding: 10px;
  border: 1px solid var(--hdi-primary);
}

.spec-table td {
  padding: 10px;
  border: 1px solid #d2eadf;
}

.spec-table tbody tr:nth-child(even) {
  background: #f8fff9;
}

/* ===== Images ===== */
.img_center {
  text-align: center;
  margin-top: 18px;
}

.img_center img {
  max-width: 320px;
  width: 95%;
  border-radius: 6px;
  border: 2px solid #d6eddc;
}

.img-caption {
  font-size: 13px;
  color: #0b4b2d;
  margin-top: 4px;
}

/* ===== CTA Box ===== */
.cta-box {
  background: var(--hdi-bg-light);
  border: 1px solid var(--hdi-border);
  padding: 26px;
  text-align: center;
  border-radius: 8px;
  margin: 30px 0;
}

.cta-box h2 {
  color: var(--hdi-primary);
  font-size: 24px;
  margin-bottom: 10px;
}

/* buttons inside CTA */
.cta-box .btn-primary {
  background: #fff !important;
  color: var(--hdi-primary) !important;
  border-color: var(--hdi-primary) !important;
  font-weight: 600;
}

.cta-box .btn-primary:hover {
  background: var(--hdi-primary-light) !important;
  color: #fff !important;
}


/* add spacing above HDI hero block */
.hdi-hero-light {
  margin-top: 16px !important; /* was 0, add breathing room */
}

