/* assets/css/footer.css - DE-CAMP PREMIUM GREEN FOOTER */

.footer-premium {
    background-color: var(--primary-color) !important;
    color: var(--light-bg);
}

.footer-premium h6 {
    color: var(--accent-color) !important; /* Başlıklar Kiremit Turuncusu */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.footer-premium p,
.footer-premium small {
    color: rgba(249, 248, 246, 0.7) !important; /* Yarı saydam keten beyazı */
    line-height: 1.8;
}

.footer-premium li a {
    color: rgba(249, 248, 246, 0.8) !important;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-premium li a:hover {
    color: var(--accent-color) !important;
    padding-left: 8px; /* Hover'da sağa kayma efekti */
}

.footer-premium .bi-geo-alt-fill,
.footer-premium .bi-envelope-fill {
    color: var(--light-bg) !important;
}

.footer-bottom-line {
    border-top: 1px solid rgba(249, 248, 246, 0.1) !important;
}

/* Uçan Dil Seçici (Aynı kalıyor) */
.language-picker {
    position: fixed; bottom: 30px; left: 30px; z-index: 9999;
    background: var(--glass-bg); backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); border-radius: 50px;
    padding: 5px; border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}
.language-picker:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; transform: translateY(-3px); }
.lang-current {
    background: transparent; border: none; color: var(--text-main);
    font-weight: 700; padding: 10px 15px; border-radius: 40px;
    transition: var(--transition-smooth);
}
.lang-current:hover { color: var(--primary-color); }
.language-picker .dropdown-menu {
    min-width: 130px; background-color: var(--glass-bg);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.language-picker .dropdown-item.active { background-color: var(--primary-color) !important; color: white !important; }

/* =========================================================
   DE-CAMP PREMIUM - FOOTER MOBILE ARMOR
   ========================================================= */

@media (max-width: 767px) {
    /* 1. Footer ana boşluklarını daralt */
    .footer-premium { 
        padding-top: 50px !important; 
        padding-bottom: 30px !important; 
    }
    
    /* 2. Başlık ve metin boyutlarını telefona (başparmağa) uygun hale getir */
    .footer-premium h6 { 
        font-size: 0.85rem !important; 
        margin-bottom: 12px !important; 
    }
    
    .footer-premium p, 
    .footer-premium small, 
    .footer-premium li a { 
        font-size: 0.8rem !important; 
        line-height: 1.6 !important; 
    }
    
    /* 3. Uçan Dil Seçici butonunu ehlileştirip köşeye it */
    .language-picker {
        bottom: 15px; 
        left: 15px;
        transform: scale(0.85);
        transform-origin: bottom left;
    }
}