/* ============================================
   FOOTER.CSS - Orijinal Footer Stilleri (Anasayfa.css'den)
   ============================================ */

/* Genel Footer Stil */
.footer {
    background: linear-gradient(90deg, #009cfb, #0056b3);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-content,
.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 200px;
    text-align: left;
}

.footer-contact {
    text-align: left;
}

.footer-title {
    font-size: 28px;
    margin-bottom: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info {
    position: relative;
    margin: .5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link {
    text-decoration: none;
    color: white;
    transition: text-decoration 0.3s;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-social {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    padding: 5px;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: white;
}

/* ETBIS */
#ETBIS {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Düzen */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 0 !important;
    }

    .footer-content,
    .footer-section {
        min-width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-info {
        font-size: 0.7rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}
