/* Footer genel arka planı: Gradient ile modern görünüm */
.footer {
    min-width: 100%;
    position: relative;
    width: 100%;
    margin-top: auto;
    width: 100%;
    height: 200px;
  }
  
  /* Başlık stilini neon yeşil vurguyla ayarlıyoruz */
  .footer-title {
    font-size: 1.8rem;
    color: #00ffcc !important;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }


  /* Alt metin */
  .footer-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Linkler */
  .footer-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  .footer-link:hover {
    color: #00ffcc;
    text-decoration: underline;
  }
  
  /* Sosyal ikonlar */
  .footer-social-link {
    color: #a0a0a0;
    font-size: 1.8rem;
    transition: color 0.3s ease;
    margin-right: 18px; /* Sosyal medya ikonları arasına boşluk ekleniyor */
  }
  .footer-social-link:last-child {
    margin-right: 0; /* Son ikonda boşluk olmasın */
  }
  
  /* YouTube ikonu için özel kırmızı renk */
  .footer-social-link .fa-youtube:hover {
    color: #ff0000;
  }
  /* GitHub ikonu için özel gri renk */
  .footer-social-link .fa-github:hover {
    color: #ffffff;
  }
  
  /* Responsive ayarlar: mobilde link ve metinlerin merkezlenmesi */
  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
  }
  