/* HTML ve body etiketlerinin genişlik ve yüksekliklerini %100 olarak ayarlar. */
html {
  width: 100%;
  height: 100%;
}

body {
  background: #efefef;
  color: #333;
  font-family: "Raleway", sans-serif;
  height: 100%;
}

/* Genel stiller */
.action {
  margin: 5px;
}

/* Başlık stilleri */
body h1 {
  text-align: center;
  color: #428BFF;
  font-weight: 300;
  font-size: 1.8rem;
  padding: 10px;
  margin: 0;
}

body h2 {
  text-align: justify;
  font-size: 1.4rem;
  padding-top: 10px;
  margin: 10px;
}

body h3 {
  text-align: justify;
  font-size: 1.2rem;
  padding-top: 5px;
  margin: 10px;
  letter-spacing: 0.05em; /* Metin için harf aralığı */
}

body h4 {
  text-align: justify;
  font-size: 1rem;
  padding-top: 10px;
  margin: 10px;
  line-height: 1.3; /* Satır yüksekliği */
  letter-spacing: 0.05em; /* Metin için harf aralığı */
}

.image, .img, .team-img {
  flex-direction: column;
  text-align: center;
  width: 360px;
  height: 360px;
  border-radius: 5%;
  margin: 10px 10px;
}

/* Özel mod düğmesi ayarları */
.bd-mode-toggle {
  z-index: 1500;
}

/* Mod düğmesindeki aktif sembol ayarları */
.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

/* Buttons */
.btn {
  margin-top: 0.25rem;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  letter-spacing: 0.5px;
  border: 1px solid #fff;
}

.btn-primary {
  background: #336ea2;
}

.btn-primary:hover {
  color: #336ea2;
  background: #fff;
  border: 1px solid #336ea2;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 30px; /* İkon boyutunu büyütüyoruz */
  margin: 0 10px; /* İkonlar arasındaki boşluk */
  color: #428BFF; /* İkon rengi */
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007bff; /* İkonların üzerine gelindiğinde renk değişimi */
}

/* Responsif Tasarım */
@media (max-width: 1200px) {
  .image, .img, .team-img {
    width: 300px;
    height: 300px;
  }
  body h1 {
    font-size: 1.6rem;
  }
  body h2 {
    font-size: 1.3rem;
  }
  body h3 {
    font-size: 1.1rem;
  }
  body h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .image, .img, .team-img {
    width: 250px;
    height: 250px;
  }
  body h1 {
    font-size: 1.8rem;
  }
  body h2 {
    font-size: 1.6rem;
  }
  body h3 {
    font-size: 1.4rem;
  }
  body h4 {
    font-size: 1.2rem;
  }
  .social-icons a {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .image, .img, .team-img {
    width: 200px;
    height: 200px;
  }
  body h1 {
    font-size: 1.8rem;
  }
  body h2 {
    font-size: 1.4rem;
  }
  body h3 {
    font-size: 1.2rem;
  }
  body h4 {
    font-size: 1rem;
  }
  .social-icons a {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .image, .img, .team-img {
    width: 150px;
    height: 150px;
  }
  body h1 {
    font-size: 1.6rem;
  }
  body h2 {
    font-size: 1.4rem;
  }
  body h3 {
    font-size: 1.2rem;
  }
  body h4 {
    font-size: 1rem;
  }
  .social-icons a {
    font-size: 18px;
  }
}
