/* ========== Typography ========== */
h1 {
  color: #F00;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

p {
  margin-bottom: 1rem;
  color: #000;
}




.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.nav a:hover {
  color: #fff;
}

.hero p {
  color: #fff; /* Replace with your desired special color */
  font-size: 1.1rem;
}

.review {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  color: #000;
}

.review h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #000;
}

.review h4 {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.review p {
  white-space: pre-line; /* this respects line breaks in CSV \n */
  line-height: 1.6;
  font-size: 0.95rem;
}

.blog-post h3 a {
  color: #000; /* 🔴 Change to your desired color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-post h3 a:hover {
  color: #f00; /* Optional: color on hover */
}


.footer-menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: medium;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #F00;
}

.footer-note {
  color: #999;
  
}


.site-credits {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  
}

.site-credits a {
  color: #F00;
  text-decoration: none;
}

.site-credits a:hover {
  text-decoration: underline;
}

