.tarasva-hero-section {
margin: 0;
padding: 0;
}
.tarasva-hero {
position: relative;
width: 100%;
min-height: 92vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: #f4efe8;
}
.tarasva-hero__media {
position: absolute;
inset: 0;
z-index: 0;
}
.tarasva-hero__img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
animation: tarasva-zoom 18s ease-in-out infinite alternate;
}
@keyframes tarasva-zoom {
from { transform: scale(1); }
to { transform: scale(1.08); }
}
.tarasva-hero__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
180deg,
rgba(20, 30, 20, 0.15) 0%,
rgba(20, 30, 20, 0.35) 55%,
rgba(20, 30, 20, 0.55) 100%
);
z-index: 1;
}
.tarasva-hero__content {
position: relative;
z-index: 2;
max-width: 640px;
margin: 0 auto;
padding: 32px 24px;
text-align: center;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
gap: 14px;
}
.tarasva-hero__eyebrow {
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: 500;
color: #d7e4c8;
margin: 0;
animation: tarasva-fade-in 0.9s ease both;
}
.tarasva-hero__heading {
font-family: Georgia, 'Times New Roman', serif;
font-size: clamp(38px, 6vw, 68px);
line-height: 1.08;
font-weight: 500;
margin: 0;
letter-spacing: -0.5px;
animation: tarasva-fade-in 0.9s ease 0.15s both;
}
.tarasva-hero__subheading {
font-size: clamp(15px, 2vw, 18px);
line-height: 1.5;
font-weight: 300;
max-width: 480px;
margin: 0;
color: rgba(255, 255, 255, 0.9);
animation: tarasva-fade-in 0.9s ease 0.3s both;
}
.tarasva-hero__button {
margin-top: 10px;
display: inline-block;
padding: 16px 44px;
background: #ffffff;
color: #2f3b25;
font-size: 15px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
text-decoration: none;
border-radius: 999px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
animation: tarasva-fade-in 0.9s ease 0.45s both;
}
.tarasva-hero__button:hover {
transform: translateY(-3px) scale(1.03);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
background: #eef3e5;
}
.tarasva-hero__offer {
margin-top: 4px;
font-size: 14px;
font-weight: 500;
letter-spacing: 0.5px;
color: #ffe9a8;
animation: tarasva-fade-in 0.9s ease 0.6s both;
}
@keyframes tarasva-fade-in {
from {
opacity: 0;
transform: translateY(16px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media screen and (max-width: 749px) {
.tarasva-hero {
min-height: 85vh;
}
.tarasva-hero__content {
padding: 24px 20px;
gap: 10px;
}
.tarasva-hero__button {
padding: 14px 36px;
font-size: 14px;
}
}