/* ===== GLOBAL FONT ===== */
body {
  font-family: 'Montserrat', sans-serif;
}

/* ===== HERO ===== */
.bro-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.bro-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bro-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
}

.bro-hero .hero-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.bro-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

/* ===== GRID ===== */
.brochures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 cards per row */
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 1024px) {
  .brochures-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .brochures-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CARDS ===== */
.bro-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.bro-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
  border-radius: 4px;
}

.bro-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bro-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.25rem;
}

/* ===== BUTTON ===== */
.bro-btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  background: #f5d96c; /* Light yellow */
  color: #000;
  transition: background 0.25s ease, color 0.25s ease;
}

.bro-btn:hover {
  background: #000;
  color: #fff;
}