/* Genel Ayarlar */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #1e2a38, #2b3b4b, #364554);
  background-size: 400% 400%;
  animation: gradientAnimation 20s ease infinite;
  color: #ffffff;
}

/* Gradient Animasyonu */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Header Logosu */
header .logo {
  max-height: 270px;
  margin-bottom: 20px;
}

/* Header Arka Planı */
header {
  background: transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Footer Tasarımı */
footer {
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Kart Tasarımı */
.card {
  border: none;
  background: #ffffff; /* Kartlar beyaz kaldı */
  color: #333333;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Kart Görseli Ortalamak */
.card-img-top {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Kart Başlık */
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Kart Yazısı */
.card-text {
  font-size: 0.9rem;
  color: #666666;
}

/* Kart Linki (Hover Renk Değişikliği) */
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit; /* Hoverda renk değişmez */
}

/* Footer Tasarımı */
footer {
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Dil değiştirme butonu */
#language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

#language-switcher:hover {
  background: rgba(255, 255, 255, 0.4);
}

#language-flag {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

#language-text {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}
