
/* Hero Enhancement */

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
z-index:1;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
color:#ffffff;
text-align:center;
z-index:2;
max-width:800px;
padding:20px;
}

.hero-content h1{
font-size:48px;
margin-bottom:20px;
}

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

.hero-buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.hero-buttons a{
background:#0a7a4f;
color:#fff;
padding:14px 22px;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:all .25s ease;
}

.hero-buttons a:hover{
background:#075c3a;
transform:translateY(-2px);
}
