/* books.css
   Small page-specific tweaks that keep visuals identical but allow minor spacing tweaks
   It's safe to include even if services.css already covers everything.
*/

@media (min-width: 1200px) {
  /* slightly increase hero text width on very large screens for better balance */
  .hero h1 { font-size: 3.4rem; }
}

.service-container {
  /* keep the same padding as services page but slightly tighter on books page */
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Make the book "cards" letter-spacing a tiny bit tighter for titles */
.service-card h3 {
  letter-spacing: -0.2px;
}

/* reduce price font on smaller screens for neat wrapping */
@media (max-width: 420px) {
  .tier .price { font-size: 1.4rem; }
}

/* ensure anchor order-btn looks consistent */
.order-btn {
  background-color: #fff;
  color: #4f46e5;
  border-radius: 50px;
  padding: 12px 22px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color .25s, transform .15s;
}

.order-btn:hover {
  background-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
}
