@font-face {
    font-family: 'IranianSans';
    src: url('/main/fonts/IranianSans.ttf') format('truetype');
}

.gh-footer {
    padding: 40px 0;
    background-color: #212121;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.gh-footer-column {
    flex: 1;
    margin: 15px;
    min-width: 200px;
    text-align: right;
}

.gh-footer-title {
    font-family: 'IranianSans', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.gh-footer-text {
    font-family: 'IranianSans', sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gh-footer-links {
    list-style: none;
    padding: 0;
}

.gh-footer-link {
    font-family: 'IranianSans', sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease-in-out;
}

.gh-footer-link:hover {
    color: #1B5E20;
}

.gh-site-logo {
    max-width: 100px;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
}

.gh-enamad-link {
    display: block;
    margin-top: 15px;
    text-align: center;
}

.gh-enamad-logo {
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.gh-enamad-logo:hover {
    transform: scale(1.1);
}

.gh-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gh-footer-copyright {
    font-family: 'IranianSans', sans-serif;
    color: #FFFFFF;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .gh-footer {
        padding: 30px 0;
    }
    .gh-footer-container {
        gap: 15px;
        padding: 0 15px;
    }
    .gh-footer-column {
        flex: 100%;
        text-align: center;
        min-width: 100%;
    }
    .gh-footer-title, .gh-footer-text, .gh-footer-link, .gh-footer-copyright {
        justify-content: center;
    }
    .gh-footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
    .gh-site-logo, .gh-enamad-logo {
        max-width: 70px;
        margin: 10px auto;
    }
}