bunu da aynı şekilde hero alanına at. metinleri değiştirirsin istediğin gibi
<style>
.lifci-home-hero {
position: relative;
min-height: 520px;
overflow: hidden;
background: #252a22;
}
.lifci-home-hero__image {
position: absolute;
inset: 0;
}
.lifci-home-hero__image img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.lifci-home-hero__shade {
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
rgba(25, 30, 23, .76) 0%,
rgba(25, 30, 23, .48) 31%,
rgba(25, 30, 23, .10) 57%,
transparent 78%
);
}
.lifci-home-hero__content {
position: relative;
z-index: 2;
width: min(650px, 50%);
min-height: 520px;
display: flex;
flex-direction: column;
justify-content: center;
padding: 60px 0 60px 7%;
}
.lifci-home-hero__overline {
margin: 0 0 20px;
color: rgba(255,255,255,.72);
font-size: 12px;
font-weight: 600;
line-height: 1.3;
letter-spacing: 2.2px;
text-transform: uppercase;
}
.lifci-home-hero__title {
margin: 0 !important;
padding: 0 !important;
color: #fff !important;
font-size: clamp(46px, 5vw, 76px);
font-weight: 700;
line-height: .96;
letter-spacing: -2.7px;
}
.lifci-home-hero__title span {
display: block;
margin-top: 8px;
color: #ffd7c5;
font-family: Georgia, "Times New Roman", serif;
font-size: .94em;
font-weight: 400;
font-style: italic;
line-height: 1.05;
letter-spacing: -1px;
word-spacing: 2px;
}
.lifci-home-hero__intro {
display: grid;
grid-template-columns: 54px 1fr;
gap: 18px;
align-items: start;
max-width: 500px;
margin-top: 30px;
}
.lifci-home-hero__line {
height: 1px;
margin-top: 11px;
background: rgba(255,255,255,.68);
}
.lifci-home-hero__text {
margin: 0;
color: rgba(255,255,255,.84);
font-size: 15px;
font-weight: 400;
line-height: 1.7;
letter-spacing: .05px;
}
.lifci-home-hero__actions {
margin-top: 31px;
}
.lifci-home-hero__button {
display: inline-flex;
align-items: center;
gap: 32px;
min-height: 52px;
padding: 0 19px 0 22px;
border: 1px solid rgba(255,255,255,.65);
background: transparent;
color: #fff !important;
text-decoration: none !important;
font-size: 12px;
font-weight: 700;
line-height: 1;
letter-spacing: 1.1px;
text-transform: uppercase;
transition:
background .25s ease,
color .25s ease;
}
.lifci-home-hero__button-arrow {
font-size: 21px;
font-weight: 300;
line-height: 1;
transition: transform .25s ease;
}
.lifci-home-hero__button:hover {
background: #fff;
color: #2c2925 !important;
}
.lifci-home-hero__button:hover .lifci-home-hero__button-arrow {
transform: translateX(5px);
}
@media (max-width: 767px) {
.lifci-home-hero {
min-height: 520px;
}
.lifci-home-hero__image img {
object-position: 58% center;
}
.lifci-home-hero__shade {
background: linear-gradient(
90deg,
rgba(25,30,23,.80) 0%,
rgba(25,30,23,.52) 60%,
rgba(25,30,23,.15) 100%
);
}
.lifci-home-hero__content {
width: 90%;
min-height: 520px;
padding: 50px 20px;
}
.lifci-home-hero__overline {
margin-bottom: 17px;
font-size: 10px;
letter-spacing: 1.7px;
}
.lifci-home-hero__title {
font-size: 45px;
line-height: .98;
letter-spacing: -1.7px;
}
.lifci-home-hero__title span {
margin-top: 6px;
font-size: .93em;
line-height: 1.08;
letter-spacing: -.5px;
word-spacing: 1px;
}
.lifci-home-hero__intro {
grid-template-columns: 34px 1fr;
gap: 12px;
margin-top: 24px;
}
.lifci-home-hero__text {
font-size: 13px;
line-height: 1.65;
}
.lifci-home-hero__actions {
margin-top: 25px;
}
.lifci-home-hero__button {
min-height: 48px;
gap: 24px;
}
}
</style>
<section class="lifci-home-hero">
<div class="lifci-home-hero__image">
<img
src="https://lifci.com/wp-content/uploads/2026/08/el-orgusu-dus-lifi.png"
alt="El yapımı banyo lifleri"
>
</div>
<div class="lifci-home-hero__shade"></div>
<div class="lifci-home-hero__content">
<p class="lifci-home-hero__overline">
Lifci · El Emeği Koleksiyonu
</p>
<h1 class="lifci-home-hero__title">
El Yapımı
<span>Banyo Lifleri</span>
</h1>
<div class="lifci-home-hero__intro">
<div class="lifci-home-hero__line"></div>
<p class="lifci-home-hero__text">
Renkli, özenli ve günlük kullanıma uygun el yapımı lif modelleri.
</p>
</div>
<div class="lifci-home-hero__actions">
<a href="/shop/" class="lifci-home-hero__button">
Koleksiyonu Keşfet
<span class="lifci-home-hero__button-arrow">→</span>
</a>
</div>
</div>
</section>