/* ===== Hero Banner ===== */
.hero {
  background: #f8f9fa; /* light gray */
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero h1 {
  font-weight: 700;
}

.hero p.lead {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.hero .btn-primary {
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: #08306b;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* ===== Links ===== */
a {
  color: #0d47a1;
  text-decoration: none;
}

a:hover {
  color: #08306b;
  text-decoration: underline;
}

/* ===== Cards ===== */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.card-title a {
  color: #0d47a1;
}

.card-title a:hover {
  color: #08306b;
  text-decoration: underline;
}

/* Card Icons */
.card i {
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn-outline-primary {
  transition: all 0.2s ease;
}

.btn-outline-primary:hover {
  background-color: #0d47a1;
  color: #fff;
  border-color: #0d47a1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===== Section Backgrounds ===== */
.featured {
  padding: 3rem 1rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#cp-printables {
  background-color: #eef6fb; /* light blue tint */
}

#choking-guides {
  background-color: #fef6e0; /* light yellow tint */
}

#checklists {
  background-color: #e8f7e4; /* light green tint */
}

/* Section Header Icons */
.featured h2 i {
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}
