/* ======================================= */
/* MODERN FOOTER STİLLERİ                   */
/* ======================================= */

.main-footer {
    background-color: #3f609e;
    color: #fff;
    padding-top: 50px;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* İletişim Sütunu */
.footer-contact-col {
    flex: 1 0 200px;
    margin-bottom: 30px;
}

.footer-contact-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #5778b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-contact-col p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact-col a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact-col a:hover {
    opacity: 0.8;
}

/* Menüler */
.footer-menu-container {
    flex: 2 1 600px;
    display: flex;
    justify-content: space-around;
}

.footer-menu-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #b0c2e3;
}

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

.footer-menu-col li {
    margin-bottom: 10px;
}

.footer-menu-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu-col a:hover {
    color: #fff;
}

/* --- ALT ÇUBUK (BOTTOM) --- */
.footer-bottom {
    background-color: #31518b;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Sol (Copyright) ve Sağ (Wrapper) arası açık */
    align-items: center;
}

/* Sağ taraftaki Technochef ve Sosyal Medya Grubu */
.footer-social-wrapper {
    display: flex;
    align-items: center;
    gap: 40px; /* Technochef yazısı ile ikonlar arasındaki mesafe */
}

.techno-chef-text {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.techno-chef-text:hover {
    color: #fce83a;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #fce83a;
    transform: translateY(-3px);
}

/* ======================================= */
/* RESPONSIVE AYARLAR                      */
/* ======================================= */

@media (max-width: 992px) {
    .footer-menu-container {
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

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

    .footer-menu-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social-wrapper {
        flex-direction: column; /* Mobilde yazı ve ikonlar alt alta */
        gap: 15px;
    }

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