/*=== CabinetShop Hero Section Styles ===*/

/* Hero Section Padding */
.hero-section {
  position: relative;
  z-index: 2;
  padding-top: 60px;    /* less top padding */
  padding-bottom: 40px; /* less bottom padding */
}

/* Hero Headline */
.hero-section h1 {
  margin-bottom: 15px;
}

/* Hero Paragraphs */
.hero-section p {
  margin-bottom: 15px;  /* tighten spacing between paragraphs */
}

/* Last paragraph at bottom of hero */
.hero-section p:last-of-type {
  margin-bottom: 15px;  /* reduce space under last paragraph */
}

/* Hero Buttons - Red Style */
.btn-hero-red {
  background-color: #c00;      /* Bold red */
  color: #fff;                 /* White text */
  border: 2px solid #c00;
  padding: 8px 16px;           /* button padding */
  font-weight: 600;
  font-size: 13px;             /* font size */
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-hero-red:hover,
.btn-hero-red:focus {
  background-color: #fff;      /* White on hover */
  color: #c00;                 /* Red text on hover */
  border-color: #c00;
  text-decoration: none;
}

/* Smaller variant for compact buttons */
.btn-hero-sm {
  padding: 6px 14px;
  font-size: 12px;
}

/* Hero buttons container spacing */
.hero-buttons {
  margin-bottom: 0;  /* remove extra bottom margin */
}

.hero-buttons a + a {
  margin-left: 10px;  /* spacing between buttons on desktop */
}

/* Stacked buttons on mobile */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a + a {
    margin-left: 0;
    margin-top: 10px;  /* space between stacked buttons */
  }
}

/* Fullheight video container adjustment */
.fullheight.video-business-img2 {
  margin-bottom: 0;  /* reduce space under video */
}

/* Optional: tighten space above next section */
.bg-color-light {
  padding-top: 30px;
}
