/* Full Background Hero Section - Laxpress Theme */

:root {
  --brand-red: #e53935;
  --dark-overlay: rgba(30, 30, 30, 0.7);
  --text-light: #ffffff;
  --max-width: 1200px;
}

/* Hero wrapper with full background */
.hero {
  width: 100%;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--text-light);
  font-family: "Poppins", "Helvetica Neue", sans-serif;
}

/* Overlay tint for readability */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: var(--dark-overlay);
  display: flex;
  align-items: center;
}

/* Inner content container */
.hero-container {
  max-width: 600px;
  padding: 0 20px;
  margin-left: 40px;

  z-index: 2;
  text-align: left;
}

/* Eyebrow text */
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Main title */
.hero-title {
  font-size: clamp(10px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}

/* Red underline */
.hero-line {
  width: 70px;
  height: 5px;
  background: var(--brand-red);
  margin: 16px 0;
  border-radius: 3px;
}

/* Subtitle text */
.hero-subtitle {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

/* Breadcrumb */
.hero-breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.hero-breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
}

.hero-breadcrumb span {
  margin: 0 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 260px;
    text-align: center;
    justify-content: center;
  }
  .hero-container {
    padding: 0 16px;
  }
  .hero-line {
    margin: 12px auto;
  }
}


@media (max-width: 480px) {
  .hero {
    height: 130px;
    text-align: center;
    justify-content: center;
  }
  .hero-container {
    padding: 0 16px;
  }
  .hero-line {
    margin: 12px auto;
  }
  .hero-subtitle{
    display:none;
  }
}
  

