.footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Footer container ayarı */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* max-width yerine width kullandık */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; /* padding'in genişliğe dahil edilmesini sağlar */
}
/* Logo ve Yazı Sol Tarafta */
.footer-left {
    display: flex;
    align-items: center;
    margin-right: 40px; /* Logo ve yazı arasına boşluk */
}

.footer-logo {
    max-width: 100%; /* Resmin konteynerine sığmasını sağlar */
    height: auto;
}

.footer-logo {
 width: 40px; /* Logo boyutunu ayarlayın */
     height: auto;
 margin-right: 10px; /* Logo ve yazı arasındaki boşluk */

    }

.footer-text {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Sosyal Medya Linkleri Ortada */
.footer-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-grow: 1;
    flex-wrap: wrap; /* İkonlar alt satıra geçebilir */
}

.icon-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.icon-link:hover {
    color: #0f6aaf; /* Hoverda renk değişimi */
}

/* Politika ve Kurallar Sağ Tarafta */
.footer-links {
    display: flex;
    gap: 25px;
    margin-left: 40px;
    flex-wrap: wrap; /* Bağlantılar alt satıra geçebilir */
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #0f6aaf; /* Hoverda renk değişimi */
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: center; /* Ekran küçüldüğünde öğeleri ortalamak */
    }

    .footer-left, .footer-icons, .footer-links {
        margin-bottom: 20px; /* Her öğe arasına boşluk ekledim */
    }

    .footer-left {
        margin-right: 0;
        justify-content: center;
    }

    .footer-icons {
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-text {
        font-size: 1.2rem; /* Yazı boyutunu küçültüyoruz */
    }

    .footer-logo {
        width: 30px; /* Logo boyutunu küçültüyoruz */
    }

    .footer-icons {
        font-size: 1.2rem; /* İkonları küçültüyoruz */
    }

    .footer-link {
        font-size: 0.8rem; /* Bağlantı boyutlarını küçültüyoruz */
    }
}

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

    .footer-left, .footer-icons, .footer-links {
        margin-bottom: 15px;
        text-align: center; /* Tüm öğeleri ortalayalım */
    }

    .footer-text {
        font-size: 1rem; /* Yazıyı daha da küçültüyoruz */
    }

    .footer-logo {
        width: 25px; /* Logoyu daha da küçültüyoruz */
    }

    .footer-icons {
        font-size: 1rem; /* İkonları daha da küçültüyoruz */
    }

    .footer-link {
        font-size: 0.75rem; /* Bağlantı boyutlarını daha da küçültüyoruz */
    }
    .footer-logo, .footer-links{
        justify-content: center; /* İkon ve linklerin ortalanması */
    }
}
@media (max-width: 400px) {
    .footer-left, .footer-icons, .footer-links {
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-logo {
        width: 20px;
    }

    .footer-icons {
        font-size: 0.8rem;
    }

    .footer-link {
        font-size: 0.6rem;
    }

    .footer-logo, .footer-links {
        justify-content: center;
    }
}
