/* Temel Kapsayıcı */
.hero-video-bolumu {
position: relative;
width: 100%;
height: 95vh;
display: flex;
align-items: center;
justify-content: flex-start;
overflow: hidden;
margin-top: 50px;
}/* Video Ayarları */
.video-arkaplan {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}.video-arkaplan iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 60vw; /* 16:9 Oranı */
min-height: 100vh;
min-width: 177.8vh; /* 16:9 Oranı */
transform: translate(-50%, -50%);
} /* Overlay (Kartarma/Renk) *//* YENİ OVERLAY: Sadece sol taraf hafif koyu, sağ taraf tamamen şeffaf */
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to top,
rgba(0, 0, 0, 0.6) 0%,
rgba(0, 0, 0, 0) 60%
);
z-index: 2;
}/* Sol İçerik Alanı Konumlandırması */
.hero-icerik {
position: absolute;
left: 50%;
bottom: 50px;
z-index: 3;
text-align: center; /* Yazıları sola hizala */
color: #ffffff;
max-width: 550px; /* Yazının sağdaki çocuğun üstüne taşmasını engeller */
transform: translateX(-50%);
}/* Zarif Ana Slogan */
.slogan {
font-family: var(--font2); /* Marka logosuna uygun zarif font */
font-size: 40px;
font-weight: 400; /* Çok kalın olmaması için soft ağırlık */
line-height: 1.2;
margin-bottom: 20px;
text-shadow: 1px 2px 15px rgba(0, 0, 0, 0.3); /* Çok hafif gölge */
animation: softGiris 1.2s ease-out forwards;
}/* Soft Alt Slogan */
.alt-slogan {
font-size: 1.1rem;
font-weight: 300;
line-height: 1.6;
margin-bottom: 35px;
opacity: 0;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
animation: softGiris 1.2s ease-out 0.3s forwards;
}/* Minimal ve Şık Buton *//* Mobil Cihazlar İçin Uyumluluk */
@media (max-width: 768px) {
.hero-icerik {
margin-left: 0%;
max-width: 90%;
}.hero-icerik {
margin-left: 0;
max-width: 90%;
width: 100%;
}.slogan {
font-size: 2.5rem;
}
.alt-slogan {
font-size: 1rem;
}
.overlay {
background: linear-gradient(
to top,
rgba(0, 0, 0, 0.7) 0%,
rgba(0, 0, 0, 0) 80%
); /* Mobilde aşağıdan gölge daha iyi olur */
}.slogan {
font-size: 1.8rem;
}.hakkimizda-sol img {
height: 250px;
}
}@media(max-width:1024px){
.hero-video-bolumu {
height: 35vh;
}
}