.hero{
position:relative;
height:640px;
display:flex;
align-items:center;
color:white;
overflow:hidden;
}

.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url('/wp-content/uploads/2026/03/jovani-print-home.webp') center/cover no-repeat;
z-index:-2;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
90deg,
rgba(10,20,40,0.85) 0%,
rgba(10,20,40,0.65) 35%,
rgba(10,20,40,0.2) 60%,
rgba(10,20,40,0) 100%
);
z-index:-1;
}

.hero-content{
max-width:540px;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
color:#e4e4e4;
}

.hero-buttons{
display:flex;
gap:15px;
}


/* TABLET */

@media(max-width:1000px){

.hero{
height:520px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

}


/* MOBILE */

@media(max-width:600px){

.hero{
height:auto;
padding:120px 0 80px;
text-align:center;
}

.hero-content{
max-width:100%;
}

.hero h1{
font-size:32px;
line-height:1.3;
}

.hero p{
font-size:16px;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
gap:10px;
}

}