/* LAYOUT: header, footer, generic layout wrappers */

@import url('./header.css');
@import url('./footer.css');
@import url('./sections.css');

/* Hero layout tweaks */
.hero {
  position: relative;
  color: #111827;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: left;
  background: url('../assets/hero-truck.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88) 46%, rgba(0, 0, 0, 0.35) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.hero h1 {
  font-size: clamp(2.5rem, 3vw + 1.8rem, 3.2rem);
  margin-bottom: 18px;
  color: #111827;
}

.hero p {
  font-size: 1.05rem;
  margin: 0 0 28px;
  max-width: 540px;
  color: #4b5563;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    align-items: flex-end;
    padding-bottom: 72px;
  }

  .hero .container {
    align-items: center;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
}

