/* ================= FOOTER STYLES ================= */

/* Disable text selection globally */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Disable image drag & right-click save */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Footer Container */
.footer {
    background: #259FF0;
    padding: 50px 20px 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

/* Footer Flex Layout */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo img {
    width: 180px;
}

/* Footer Description */
.footer-desc {
    font-size: 14px;
    color: #fff;
    flex: 2 1 300px;
    line-height: 1.5;
    margin: 0 20px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 50px;
    justify-content: flex-end;
    background-color: white;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.tiktok {
    background: linear-gradient(45deg, #43d8e2, #EE1D52);
}

.social-icons a.youtube {
    background-color: #FF0000;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 13px;
    max-width: 1200px;
    margin: 20px auto 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p,
.footer-links a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 15px;
}

/* Hover effect */
.footer-links a:hover {
    color: #222;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        /* gap’ı küçülttük */
    }

    .footer-desc {
        margin: 10px 0;
        /* fazla boşluğu azalttık */
        flex: unset;
        /* mobilde genişliği sınırlamayalım */
    }

    .social-icons {
        margin-top: 10px;
    }
}