/* =========================
   HERO VIDEO SECTION
========================= */

.hero-img {
  position: relative;
  width: 100%;
  height: 100vh; /* Tüm ekran yüksekliği */
  overflow: hidden; /* Taşan kısmı gizle */
  display: flex;
  align-items: center; /* İçeriği dikey ortala */
  justify-content: center; /* İçeriği yatay ortala */
}

.hero-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Resmi kesmeden alanı doldurur */
  z-index: 0;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-section-title {
  margin: 0 auto;
  text-align: center;
  padding: 50px;
}

.hero-section-title p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-section-title h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.content-text ul {
  list-style-type: disc; /* Noktalı liste */
  padding-left: 20px; /* Sol boşluk */
  margin-top: 10px;
  margin-bottom: 20px;
}

/* LI için */
.content-text ul li {
  margin-bottom: 8px; /* Satırlar arası boşluk */
  line-height: 1.6; /* Daha okunaklı satır yüksekliği */
  color: #333; /* Yazı rengi */
  font-size: 1rem; /* Yazı boyutu */
}

/* İsteğe bağlı: hover efekti */
.content-text ul li:hover {
  color: #007bff; /* Fareyle üzerine gelince renk değişir */
  cursor: default;
}

/* =========================
   CONTENT SECTIONS
========================= */

.content-section {
  padding: 100px 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* =========================
   ALTERNATING (İstersen)
========================= */
/* Tek satır ekleyerek sağ-sol değiştirirsin */
.content-section.reverse .content-container {
  flex-direction: row-reverse;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .content-container {
    flex-direction: column;
    gap: 40px;
  }

  .content-text h2 {
    font-size: 1.9rem;
  }

  .content-section {
    padding: 70px 0;
  }
}
