/* Footer Genel Stili */
footer {
    background-color: #1E1E1E;
    color: #B0B0B0;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

/* Footer İçeriği */
.footer-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Footer Bölümleri */
.footer-about, .footer-links, .footer-contact, .footer-social {
    width: 23%;
}

/* Footer Logo ve Açıklama */
.footer-about img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.5;
}

/* Hızlı Erişim Bağlantıları */
.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #D0D0D0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #D0D0D0;
}

/* İletişim Bilgileri */
.footer-contact p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #D0D0D0;
    text-decoration: none;
    font-weight: bold;
}

.footer-contact a:hover {
    color: #A0A0A0;
}

/* Sosyal Medya */
.footer-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social .social-icons a img {
    width: 25px; /* İkonları küçülttük */
    transition: transform 0.3s ease;
}

.footer-social .social-icons a:hover img {
    transform: scale(1.1);
}

/* Telif Hakkı */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #D0D0D0;
}

/* Mhtsoftware Renkli Yazı */
.footer-bottom .mhtsoftware {
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffea, #0048ff, #9b00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    animation: rainbow 5s ease infinite;
}

/* Mhtsoftware Yazısı Hover Efekti */
.footer-bottom .mhtsoftware:hover {
    background-size: 200% 200%;
    animation: rainbow 3s ease infinite;
}

/* Renk Geçiş Animasyonu */
@keyframes rainbow {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-about, .footer-links, .footer-contact, .footer-social {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about, .footer-links, .footer-contact, .footer-social {
        width: 100%;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}
