:root {
  --red: #c8102e;
  --yellow: #ffcc00;
  --black: #000;
}

/* Header */
/* CATALOG HERO WITH VIDEO */
.catalog-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
}

.catalog-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* DARK OVERLAY + CONTENT */
.catalog-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* same as About page overlay */
}

.catalog-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.catalog-hero p {
  font-size: 1.2rem;
}


.catalog-card-inner {
  background: #fff;
  border-radius: 10px;
  border: 3px solid var(--yellow);
  overflow: hidden;
  padding-bottom: 15px;
  transition: .25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.catalog-card-inner:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.catalog-card-inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.catalog-card-inner h4 {
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  color: #000;
}
