/*
Theme Name:   Akordha Child
Template:     ayhan
*/



/* =========================================
   استایل‌های اختصاصی فوتر سایت آکوردها
========================================= */

:root {
        --primary: #6c5ce7;
        --primary-light: #a29bfe;
        --accent: #00d2d3;
        --text-dark: #2d3436;
        --text-medium: #636e72;
        --bg-light: #f8f9fa; /* پس زمینه روشن مثل لامینور */
        --card-bg: #ffffff;
    }

.ak-site-footer {
    background-color: #1a1a2e; /* یک رنگ سورمه‌ای/بنفش بسیار تیره و شیک */
    color: #d1d1e4; /* رنگ متن خاکستری/بنفش ملایم */
    font-family: inherit;
    direction: rtl;
    margin-top: auto; /* برای چسبیدن به پایین صفحه که قبلا گفتیم */
}

.ak-footer-top {
    padding: 60px 0 40px;
    border-top: 5px solid #867ae9; /* نوار بنفش رنگ تم شما در بالای فوتر */
}



/* ساختار گرید برای ریسپانسیو بودن */
.ak-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* استایل عنوان‌های فوتر */
.ak-widget-title {
    color: #ffffff;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: bold;
}

/* خط زیر عنوان‌ها (افکت جذاب) */
.ak-widget-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background-color: #867ae9; /* رنگ تم شما */
    border-radius: 2px;
}

.ak-footer-widget p {
    line-height: 1.8;
    font-size: 14px;
    color: #b5b5c9;
}

/* استایل لیست‌ها و لینک‌ها */
.ak-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ak-footer-widget ul li {
    margin-bottom: 15px;
}

.ak-footer-widget ul li a {
    color: #b5b5c9;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14.5px;
    display: inline-block;
}

/* افکت هاور (رفتن موس روی لینک) */
.ak-footer-widget ul li a:hover {
    color: #867ae9;
    transform: translateX(-5px); /* کمی به سمت چپ حرکت می‌کند */
}

/* =========================================
   استایل شبکه‌های اجتماعی با آیکون‌های SVG
========================================= */
.ak-social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ak-social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b5b5c9;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14.5px;
}

/* باکس دایره‌ای دور آیکون */
.ak-social-icon .ak-svg-icon {
    background: rgba(134, 122, 233, 0.1);
    color: #867ae9;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease; /* انیمیشن نرم‌تر */
}

/* استایل خود آیکون و سایز دقیق آن */
.ak-social-icon .ak-svg-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ak-social-icon:hover {
    color: #ffffff;
}

/* افکت چرخشی ۳۶۰ درجه به همراه تغییر رنگ در هاور */
.ak-social-icon:hover .ak-svg-icon {
    background: #867ae9;
    color: #ffffff;
    transform: rotate(360deg);
}

/* نوار کپی‌رایت پایین */
.ak-footer-bottom {
    background-color: #121221; /* رنگی کمی تیره‌تر از پس‌زمینه فوتر */
    padding: 20px 0;
    text-align: center;
    font-size: 13.5px;
    color: #7b7b93;
}

.ak-footer-bottom p {
    margin: 0;
}

.ak-footer-bottom strong {
    color: #867ae9;
}