/* === Thermwood Brochures Page Styles === */

.brochure-grid {
  margin-top: 30px;
}

/* Card container */
.brochure-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.brochure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Brochure image */
.brochure-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card body */
.brochure-card .card-body {
  padding: 15px;
  text-align: center;
}

.brochure-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

/* Primary button styling (Thermwood red) */
.btn-primary {
  background-color: #cc0000;
  border-color: #cc0000;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #990000;
  border-color: #990000;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .brochure-card .card-title {
    font-size: 0.95rem;
  }
  .btn-primary {
    font-size: 0.85rem;
  }
}
