/* Ana Footer */
.main-footer {
    padding: 70px 0 30px;
    background-color: transparent;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Kolon Yerleşimi */
.footer-content {
    display: flex;
    flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Sıkışmayı önler */
}

.about-column {
    flex: 1.5; /* Logo kısmına biraz daha yer açar */
}

/* LOGO AYARI - Burası önemli */
.footer-logo img {
    width: 150px; /* Boyutu buradan manuel ayarla */
    height: auto;
    margin-bottom: 20px;
    display: block;
}

/* Başlıklar ve Yazılar */
.footer-column h5 {
    font-size: 18px;
    font-weight: 700;
    color: #676128 !important;
    margin-bottom: 20px;
}

.footer-column p, 
.footer-column a, 
.footer-column li, 
.footer-column i {
    color: #676128 !important;
    text-decoration: none;
    list-style: none;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links, .footer-contact {
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
}

/* Sosyal Medya */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #000 !important;
}

/* Alt Bar (Copyright) */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(103, 97, 40, 0.2);
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.backtop {
    width: 45px;
    height: 45px;
    border: 1px solid #676128;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #676128;
    transition: 0.4s;
}

.backtop:hover {
    background: #676128;
    color: #fff !important;
}

/* MOBİL GÖRÜNÜM DÜZENİ */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo img {
        margin: 0 auto 20px;
    }
    .social-icons {
        justify-content: center;
    }
    .bottom-inner {
        flex-direction: column;
        gap: 20px;
    }
}