/* ==========================================================================
   Footer Stilleri (Masaüstü için varsayılan)
   ========================================================================== */
.main-footer {
    background: #2e2f33;
    color: #ececec;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-size: 14px;
    padding: 40px 20px;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    flex: none;
    margin-right: 20px;
}

.footer-center {
    display: flex;
    flex: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    white-space: nowrap;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-links li a {
    color: #ececec;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links li a:hover {
    color: #FAB403;
}

.footer-copyright-text {
     font-size: 13px;
    color: #aaa;
    margin-top: 5px;
}

/* Orta bölgedeki bağlantılar */
.footer-center ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-center ul li a {
    color: #ececec;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: #FAB403;
}

/* Sosyal medya ikonları */
.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    position: relative;
    color: #ececec;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    text-decoration: none;
    padding: 0 !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: transparent;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social-icons a.ig:hover::before {
    transform: scale(1.3);
    background-color: #c7255b;
}

.footer-social-icons a.ln:hover::before {
    transform: scale(1.3);
    background-color: #0077b5;
}

.footer-social-icons a.fb:hover::before {
    transform: scale(1.3);
    background-color: #1877F2;
}

.footer-social-icons a.x-twitter:hover::before {
    transform: scale(1.3);
    background-color: #000;
}

.footer-social-icons a:hover {
    color: white;
}

/* En alttaki telif hakkı metni için stil (eğer ayrı bir p etiketi ise) */
.footer-bottom-text {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: #b0b0b0;
    margin-top: 30px;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet ve Mobil Cihazlar İçin Responsive Ayarlar */
@media (max-width: 768px) {
    .main-footer {
        padding: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-left,
    .footer-center, /* footer-center-copyright da aynı stili alacaktır */
    .footer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 10px;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
        margin: 0 0 10px 0;
    }

    .footer-links li a {
        font-size: 14px;
        color: #ececec;
        text-decoration: none;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

    .footer-links li a:hover {
        color: #FAB403;
    }

    .footer-copyright-text {
        font-size: 13px;
        color: #aaa;
        margin: 0 auto;
        padding: 0 15px;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
        gap: 12px;
    }
}

/* Daha küçük mobil cihazlar için ekstra ayarlar (örneğin 480px altı) */
@media (max-width: 480px) {
    .main-footer {
        padding: 15px 0;
    }
    .footer-logo {
        height: 45px;
    }
    .footer-copyright-text {
        font-size: 12px;
    }
    .footer-links li a {
        font-size: 13px;
    }
    .footer-social-icons {
        gap: 10px;
    }
}
