/* ============================================
   PROFESSIONAL HERO — Frosted Bottom-Left Banner
============================================ */
.hero-section {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0 2rem;
}

/* IMAGE — Slightly Shorter & Clean */
.hero-section .hero-image img {
  width: 100%;
  height: 420px;        /* Reduced height for professional look */
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}

.hero-content {
  position: absolute;
  z-index: 2;
  -webkit-backdrop-filter: blur(12px);
}

/* FROSTED BANNER — Bottom-left */
.hero-content {
  position: absolute;
  bottom: 28px;         /* Keep inside image frame */
  left: 32px;

background: linear-gradient(
  rgba(255,255,255,0.28),
  rgba(255,255,255,0.18)
);
  backdrop-filter: blur(12px);
  padding: 1rem 1.4rem;
  border-radius: 12px;

  max-width: 70%;       /* Prevent the bar from being too wide */
  display: inline-block;

  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0) 70%
  );
  pointer-events: none;
}

/* HERO TITLE */
.hero-title {
  color: #fff;
  font-size: 2rem;      /* Smaller + cleaner */
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.35);
  white-space: nowrap;  /* Force single line */
overflow-wrap: normal;
}

/* UNDERLINE */
.hero-title::after {
  content: "";
    display: none !important;
  width: 70px;
  height: 5px;
  background: #c62828;
  margin-top: 6px;
  border-radius: 3px;
}

/* ========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-section .hero-image img {
    height: 260px;
  }

  .hero-content {
    bottom: 18px;
    left: 18px;
    max-width: 85%;
    padding: .8rem 1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
  }

  .hero-title {
    font-size: 1.4rem;
    white-space: normal; /* allow wrap on small screens */
  }
}

/* ===========================
   HERO VIDEO — Minimal Styling
=========================== */

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 16px;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Match image tone */
  filter: brightness(0.75) contrast(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video video {
    display: none;
  }
}
