﻿/* 📌 استایل کلی فوتر */
.footer {
    background: linear-gradient(135deg, #222, #333);
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

/* 📌 استایل کانتینر اصلی */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 📌 استایل متن‌ها */
.footer p, .footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer a:hover {
        color: #f8d210;
    }

/* 📌 استایل بخش زبان */
.footer-center {
    display: flex;
    align-items: center;
}

.footer-title {
    font-weight: bold;
    margin-right: 10px;
}

/* 📌 استایل دکمه انتخاب زبان */
.dropbtn {
    background-color: #444;
    color: white;
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
}

    .dropbtn img {
        width: 18px;
        height: 12px;
    }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #555;
    min-width: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    border-radius: 5px;
}

    .dropdown-content a {
        color: white;
        padding: 10px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background 0.3s ease;
    }

        .dropdown-content a img {
            width: 18px;
            height: 12px;
        }

        .dropdown-content a:hover {
            background-color: #666;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* 📌 استایل لینک‌ها */
.footer-right {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

    .footer-right a {
        font-size: 13px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

        .footer-right a:hover {
            color: #f8d210;
            transform: scale(1.1);
        }

/* 📌 استایل شبکه‌های اجتماعی */
.social-icons {
    margin-top: 10px;
}

    .social-icons a {
        margin: 0 10px;
        font-size: 18px;
        color: #bbb;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            color: #f8d210;
            transform: scale(1.3);
        }

/* 📌 ریسپانسیو */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        margin-bottom: 15px;
    }
}


/* ✅ تنظیمات کلی برای کل صفحه */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ✅ بسته‌بندی کل محتوا برای چسباندن فوتر به پایین */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* حداقل ارتفاع برابر با کل صفحه */
}

/* ✅ محتوا بقیه فضای خالی را پر کند */
.content {
    flex: 1;
    padding: 20px;
}

/* ✅ استایل فوتر */
.footer {
    background-color: #343a40; /* رنگ پس‌زمینه */
    color: white; /* رنگ متن */
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* فوتر را همیشه به پایین صفحه می‌چسباند */
    position: relative;
}

    /* ✅ لینک‌های فوتر */
    .footer a {
        color: #ffc107;
        text-decoration: none;
        margin: 0 10px;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* ✅ شبکه‌های اجتماعی */
.social-icons {
    margin-top: 10px;
}

    .social-icons a {
        color: white;
        font-size: 1.5rem;
        margin: 0 10px;
        transition: color 0.3s ease-in-out;
    }

        .social-icons a:hover {
            color: #ffc107;
        }

/* ✅ انتخاب زبان */
.footer-center {
    text-align: center;
    margin-top: 15px;
}

.dropbtn {
    background-color: #343a40;
    color: white;
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.flag {
    width: 20px;
    height: auto;
    margin-right: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ✅ لینک‌های مهم */
.footer-right {
    margin-top: 10px;
}

/* ✅ موبایل (ریسپانسیو) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        margin-bottom: 10px;
    }
}
