/* GENEL KUTU STİLİ */
.section {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* Hero Bölüm Arka Plan */
.hero-section {
  width: 100%;
  background-color: #2e2e2e; /* Koyu arka plan */
  padding: 80px 0;
  margin: 0;
}

/* İçerik hizalama */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Yazılar kutusuz, doğrudan koyu zemin üstünde */
.hero-text {
  flex: 1;
  min-width: 300px;
  color: #ffffff; /* Beyaz yazı */
}

.hero-text h1,
.hero-text h2,
.hero-text p {
  color: #ffffff;
  margin-bottom: 15px;
}

.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .btn {
  margin-right: 10px;
}

/* Görsel kutusu */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  height: 100%;
  max-height: 460px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #b8860b; /* Altın tonlu başlık */
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #00b3b3; /* Turkuaz başlık */
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff; /* Beyaz açıklama */
}

/* Butonlar için ekstra öneri (zaten turkuazsa gerek yok ama gerekirse) */
.hero-buttons .btn {
  font-weight: 600;
}



/* About - Hakkımızda */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 2;
}

/* Vizyon-Misyon */
.vision-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vision-box,
.mission-box {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

/* Değerler */
.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-box {
  flex: 1 1 180px;
  max-width: 200px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

/* Kurucu Mesaj */
.founder-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.founder-content {
  flex: 2;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}

.cta-content {
  background: rgba(0, 0, 0, 0.04);
  padding: 40px;
  border-radius: 20px;
  display: inline-block;
}
