/* Temel Kart Stili */
.custom-card {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
  background: #fdfdfd;
  overflow: hidden;
  position: relative;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(44, 62, 80, 0.05);
  pointer-events: none;
}

/* BaÅŸlÄ±k Animasyonu */
.display-6 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  color: #2c3e50;
}

.display-6::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #fdfdfd);
  transition: width 0.3s ease;
}

.display-6:hover::after {
  width: 100px;
}

/* Avatar */
.avatar {
  border: 3px solid #d4af37;
  padding: 3px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Sosyal Linkler */
.social-list {
  position: relative;
}

.social-link {
  color: #2c3e50;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-link:hover {
  color: #d4af37;
  transform: translateY(-3px);
}

/* Butonlar */
.btn-outline-primary {
  border: 2px solid #2c3e50;
  color: #2c3e50;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-outline-primary:hover {
  border: 2px solid #d4af37;
  background: #2c3e50;
  color: white;
}

/* Responsive Ayarlar */
@media (max-width: 749px) {
  .buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .buttons .btn {
    width: 100%;
  }

  .social-list {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* Teknoloji LogolarÄ± */
.tech-logo {
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  background: rgba(44, 62, 80, 0.05);
  color: #2c3e50;
}

.tech-logo.android {
  background: rgba(212, 175, 55, 0.05);
  color: #27ac3f;
}

.tech-logo.flutter {
  background: rgba(212, 175, 55, 0.05);
  color: #3678ba;
}

.tech-logo.ai {
  background: rgba(212, 175, 55, 0.05);
  color: #d4af37;
}
.tech-logo.desktop{
  background: rgba(212, 175, 55, 0.05);
  color: #415899;
}
.tech-logo.swift{
  background: rgba(212, 175, 55, 0.05);
  color: #FA7343;
}

/* === DARK THEME === */
[data-bs-theme="dark"] body {
  background-color: #0e1117;
  color: #c9d1d9;
}

[data-bs-theme="dark"] .custom-card {
  background-color: #161b22 !important;
  color: #c9d1d9;
}

[data-bs-theme="dark"] .card {
  background-color: #1c2128;
  color: #c9d1d9;
}

[data-bs-theme="dark"] .btn-outline-primary {
  border-color: #58a6ff;
  color: #58a6ff;
}

[data-bs-theme="dark"] .btn-outline-primary:hover {
  background-color: #58a6ff;
  color: #0e1117;
}

[data-bs-theme="dark"] .social-link {
  color: #c9d1d9;
}

[data-bs-theme="dark"] .social-link:hover {
  color: #d4af37;
}

[data-bs-theme="dark"] .tech-logo {
  background-color: rgba(255, 255, 255, 0.05);
  color: #f1f1f1;
}
