/* Unified Hero Buttons - Red Style for CabinetShop 43 & LSAM Pages */
.btn-hero-red {
  background-color: #c00;      /* Bold red */
  color: #fff;                 /* White text */
  border: 2px solid #c00;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-hero-red:hover,
.btn-hero-red:focus {
  background-color: #fff;      /* White background on hover */
  color: #c00;                 /* Red text on hover */
  border-color: #c00;
  text-decoration: none;
}

.btn-hero-sm {
  padding: 6px 14px;           /* Smaller padding */
  font-size: 12px;             /* Smaller font */
}

.btn-hero-red + .btn-hero-red {
  margin-left: 10px;           /* spacing between buttons */
}

@media (max-width: 576px) {
  .btn-hero-red {
    width: 100%;               /* stack buttons on mobile */
    margin-bottom: 10px;
  }

  .btn-hero-red + .btn-hero-red {
    margin-left: 0;
  }
}

/* Hero Section Padding - tighter spacing */
.hero-section {
  padding-top: 30px;     /* Reduced top padding */
  padding-bottom: 20px;  /* Reduced bottom padding */
}

/* Optional: Adjust spacing for hero text paragraphs */
.hero-section p {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Optional: Headline spacing */
.hero-section h1 {
  margin-bottom: 15px;
}
