﻿/* کل صفحه حداقل ارتفاع 100% */
html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative; /* برای Footer */
    margin: 0;
    padding-bottom: 160px; /* ارتفاع Footer + فاصله */
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529; /* پس‌زمینه تیره */
    color: #f8f9fa; /* متن روشن */
    text-align: center;
    padding: 25px 0;
    font-family: "Tahoma", sans-serif;
}

    /* خط جداکننده بالای Footer */
    .footer hr {
        height: 2px;
        background-color: #5bc0de;
        border: none;
        width: 80%;
        margin: 0 auto 15px auto;
    }

    /* متن اصلی Footer */
    .footer p {
        margin: 0;
        font-size: 14px;
    }

    /* بخش طراحی و توسعه */
    .footer .footer-author {
        background-color: #343a40;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 6px;
    }

        .footer .footer-author a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s, transform 0.3s;
        }

            .footer .footer-author a:hover {
                color: #ffdd57;
                transform: scale(1.05);
            }
