/* Genel Stil */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Ledger', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Mode */
body.light-mode {
  background: #ffffff;
  color: #121212;
}

/* Dark Mode */
body.dark-mode {
  background: #121212;
  color: #B0BEC5;
}

/* Sistem Teması */
body.system-mode {
  background: #ffffff;
  color: #121212;
}

@media (prefers-color-scheme: dark) {
  body.system-mode {
    background: #121212;
    color: #B0BEC5;
  }
}

/* Container */
.container {
  max-width: 800px;
  padding: 20px;
}

/* Ad Soyad Stili */
h1 {
  font-size: 5rem;
  margin-bottom: 40px;
  font-weight: normal;
  letter-spacing: 2px;
}

/* Sosyal Medya Bağlantıları Stili */
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-link {
  color: inherit;
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-link i {
  font-size: 2rem;
}

.social-link:hover {
  color: #B0BEC5; /* Light mode için hover rengi */
}

body.dark-mode .social-link:hover {
  color: #ffffff; /* Dark mode için hover rengi */
}

/* Tema Değiştirme Butonu */
.theme-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.theme-button {
  background: none;
  border: 1px solid #B0BEC5;
  color: #B0BEC5;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.theme-button:hover {
  background: #B0BEC5;
  color: #121212;
}

.theme-button.active {
  background: #B0BEC5;
  color: #121212;
}

/* Tooltip Stili */
.social-link .tooltip {
  visibility: hidden;
  background-color: #121212; /* Light mode için varsayılan renk */
  color: #ffffff; /* Light mode için yazı rengi */
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: -30px; /* Simgenin altında görünecek */
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.social-link:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Light Mode için Tooltip */
body.light-mode .social-link .tooltip {
  background-color: #121212; /* Koyu gri */
  color: #ffffff; /* Beyaz */
}

/* Dark Mode için Tooltip */
body.dark-mode .social-link .tooltip {
  background-color: #B0BEC5; /* Açık gri */
  color: #121212; /* Koyu gri */

}
