/* YeşilEv Yapı Kooperatifi - Modern ve Profesyonel CSS */

/* GENEL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  background: #0f5132;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

header h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

nav a {
  color: #fff;
  margin-left: 30px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.7;
}

/* HERO BÖLÜMÜ */
.hero {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  padding-left: 60px;
  color: #fff;
}

.hero h2 {
  font-size: 48px;
  max-width: 600px;
  font-weight: 700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

/* GENEL BÖLÜM */
.section {
  padding: 80px 60px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f5132;
}

.subtitle {
  font-size: 18px;
  max-width: 900px;
  line-height: 1.7;
}

/* ÖZELLİK KARTLARI */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f5132;
  margin-bottom: 10px;
}

/* ÖDEME TABLOSU */
.payment-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin-top: 30px;
}

.payment-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0f5132;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

/* İLETİŞİM */
.contact-info {
  font-size: 20px;
  margin-top: 25px;
  font-weight: 600;
  color: #0f5132;
}

/* FOOTER */
footer {
  background: #0f5132;
  color: #fff;
  text-align: center;
  padding: 40px;
  margin-top: 80px;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }

  .hero h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    margin: 10px;
    display: inline-block;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-left: 20px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .section {
    padding: 50px 20px;
  }
}
/* --- TUZUK SAYFASI ÖZEL TASARIM --- */

.tuzuk-content {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 1000px;
  margin: 60px auto;
  line-height: 1.8;
  font-size: 18px;
  color: #1a1a1a;
}

.tuzuk-content h2 {
  color: #0f5132;
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 15px 0;
  border-left: 6px solid #0f5132;
  padding-left: 12px;
}

.tuzuk-content h3 {
  color: #0f5132;
  font-size: 20px;
  margin-top: 25px;
  font-weight: 600;
}

.tuzuk-content p {
  margin-bottom: 18px;
}

.tuzuk-content strong {
  color: #0f5132;
  font-weight: 700;
}

.tuzuk-content ul,
.tuzuk-content ol {
  margin: 15px 0 20px 40px;
  line-height: 1.7;
}

.tuzuk-content li {
  margin-bottom: 8px;
}

/* Madde kutuları için (istersen ekleyebilirsin) */
.tuzuk-box {
  background: #f5f7f8;
  padding: 18px 22px;
  border-left: 5px solid #0f5132;
  border-radius: 6px;
  margin: 25px 0;
  font-size: 17px;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .tuzuk-content {
    padding: 25px 20px;
    margin: 30px 10px;
    font-size: 17px;
  }

  .tuzuk-content h2 {
    font-size: 22px;
  }

  .tuzuk-content h3 {
    font-size: 18px;
  }
}

