/* =====================================================
 * FOOTER.CSS – 20. Uluslararası Kil Sempozyumu
 * ===================================================== */

/* ===== FOOTER ANA YAPISI ===== */
.sym-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== FOOTER ÜSTTE ACCENT ÇİZGİSİ ===== */
.sym-footer-top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

/* ===== ANA FOOTER İÇERİĞİ ===== */
.sym-footer-main {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.sym-footer-inner {
    max-width: 1400px; /* Logolara tam alan tanımak için genişletildi */
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== YENİ MERKEZİ DÜZEN (Referans Görseldeki Gibi) ===== */
.sym-footer-layout-centered {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Logoları dikeyde ortalar */
    min-height: 250px; /* Yazıların yüksekliğini kapsayacak kadar boşluk bırakıldı */
    position: relative;
    padding: 0 10px; /* İçe doğru boşluk */
}

/* Yanlardaki logo alanları */
.sym-footer-flank {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2; /* Yazıların altında ezilmesin */
    width: 32%;
}

.sym-footer-flank-left {
    justify-content: center;
    padding-left: 0;
    padding-right: 16px;
}

.sym-footer-flank-right {
    justify-content: space-evenly;
    gap: 20px; /* Sağdaki iki logo arası mesafe */
}

/* Footer logo wrapper – temel stiller */
.sym-footer-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.sym-footer-logo-box:hover {
    transform: scale(1.05);
}

.sym-footer-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    display: block;
}

/* Bireysel logo boyutları
   - Oval logolar: aynı ölçü
   - Dairesel logolar: aynı ölçü */
.sym-footer-logo-box-0,
.sym-footer-logo-box-1 {
    width: 170px;
    height: 234px;
}

.sym-footer-logo-box-2,
.sym-footer-logo-box-3 {
    width: 190px;
    height: 190px;
}

/* Orta Metin Alanı - Mutlak Merkezleme */
.sym-footer-center-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px; /* Yazı genisliğini sınırla, logolara çarpmasın */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Yazılar arası mesafe */
    z-index: 1;
}

.sym-center-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

.sym-center-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: var(--spacing-xs);
}

.sym-center-address,
.sym-center-contact {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.sym-center-contact a {
    color: #fff;
    text-decoration: none;
    transition: color var(--transition);
}

.sym-center-contact a:hover {
    color: var(--primary);
}

/* Orta Alan Sosyal Medya */
.sym-center-social {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin: var(--spacing-sm) 0;
}

.sym-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.sym-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Orta Alan Telif Hakkı ve Linkler */
.sym-center-copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: var(--spacing-xs);
}

.sym-center-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.sym-center-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color var(--transition);
}

.sym-center-links a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    /* Dar paneller için yazıyı esnek hale getir */
    .sym-footer-layout-centered {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }
    
    .sym-footer-flank {
        justify-content: center;
        width: 100%;
    }
    
    .sym-footer-flank-left {
        padding-left: 0; /* Mobilde ortalamayı bozmasın */
    }

    .sym-footer-center-content {
        position: relative;
        left: auto;
        transform: none;
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .sym-footer-logo-box-0,
    .sym-footer-logo-box-1 {
        width: 90px;
        height: 124px;
    }

    .sym-footer-logo-box-2,
    .sym-footer-logo-box-3 {
        width: 96px;
        height: 96px;
    }
    
    .sym-footer-center-content {
        padding: 0 var(--spacing-sm);
    }
}