/**
 * Footer Desktop Styles
 * ✅ حذف تعریف‌های تکراری فونت و استفاده از Font Manager متمرکز
 * Version: 7.5.1
 */

/* ============================================================
   ✅ فونت‌ها توسط Font Manager متمرکز بارگذاری می‌شوند
   ❌ تعریف @font-face در این فایل حذف شد
   ============================================================ */

/* تنظیمات کلی کانتینر فوتر - شناور و کپسولی */
.htk-footer-d {
    background: var(--gradient-primary, linear-gradient(135deg, #3b82f6, #1a56db)); 
    color: #fff;
    height: 60px;
    
    /* تنظیمات شناور (Fixed) */
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: 0;
    width: auto;
    z-index: 2147483647;
    
    border-radius: 50px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(3, 115, 236, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.htk-footer-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* --- بخش شبکه های اجتماعی (سمت راست) --- */
.htk-foot-socials {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
}

/* استایل دکمه های شبکه اجتماعی */
.htk-foot-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* افکت شیشه ای */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* هاور */
.htk-foot-socials a:hover {
    background: var(--secondary-color, #fbbf24);
    border-color: var(--secondary-color, #fbbf24);
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 216, 0, 0.4);
}

/* کلیک/انتخاب */
.htk-foot-socials a:active,
.htk-foot-socials a:focus {
    background: #e6c200;
    color: #000;
    transform: translateY(0);
}

/* --- بخش وسط (متن ها) --- */
.htk-foot-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.htk-copy-text {
    font-size: 12px;
    color: #fff;
    margin-bottom: 2px;
}

.htk-copy-text a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border: none;
}

.htk-copy-text a:hover {
    color: var(--secondary-color, #fbbf24);
}

/* تنظیمات بخش طراح */
.htk-dev-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.htk-dev-text a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    font-family: inherit;
    opacity: 0.9;
    transition: color 0.3s;
}

.htk-dev-text a:hover {
    color: var(--secondary-color, #fbbf24);
}

/* --- بخش چپ (برندینگ) --- */
.htk-foot-branding {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: left;
}

.htk-foot-branding h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.htk-foot-branding span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    font-family: sans-serif;
}

/* ریسپانسیو */
@media (max-width: 1100px) {
    .htk-footer-d {
        height: auto;
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
        bottom: 20px;
    }
    
    .htk-footer-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .htk-foot-socials,
    .htk-foot-branding {
        justify-content: center;
        align-items: center;
    }
    
    .htk-foot-branding {
        align-items: center;
        text-align: center;
    }
}