.hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 16px;
  background:
    linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.52)),
    url("/assets/images/hero-arepas.jpg") center/cover no-repeat;
}

.hero-overlay{
  width:100%;
  max-width:720px;
  text-align:center;
  color:var(--color-white);
}

.hero h1{
  font-size:40px;
  line-height:.95;
  font-weight:900;
  margin-bottom:14px;
  text-transform:uppercase;
  letter-spacing:.8px;
}

.hero p{
  font-size:18px;
  line-height:1.35;
  max-width:560px;
  margin:0 auto 24px;
  opacity:.96;
}

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

.hero .btn{
  width:100%;
  max-width:280px;
  box-shadow:var(--shadow-soft);
}

.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(.98);
}

.btn-secondary:hover{
  transform:translateY(-1px);
  filter:brightness(.98);
}

@media (min-width:768px){
  .hero{
    min-height:78vh;
    padding:56px 24px;
  }

  .hero h1{
    font-size:64px;
  }

  .hero p{
    font-size:20px;
    margin-bottom:28px;
  }

  .hero-buttons{
    flex-direction:row;
  }

  .hero .btn{
    width:auto;
    min-width:190px;
  }
}