﻿.footer {
    background-color: #111;
    color: #eee;
    font-family: "Poppins", sans-serif;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 20px 20px;
}

.footer__top .col-md-3 {
    margin-bottom: 30px;
}

.footer__logo h2 {
    font-weight: 700;
    color: #fff;
}

.footer__logo span {
    color: #C8A56E;
}

.footer__logo p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer__links h3,
.footer__contact h3,
.footer__social h3 {
    color: #C8A56E;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__links ul li,
.footer__contact p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

    .footer__links ul li i,
    .footer__contact p i {
        color: #C8A56E;
        margin-right: 8px;
    }

    .footer__links ul li a {
        color: #aaa;
        transition: color 0.3s;
    }

        .footer__links ul li a:hover {
            color: #C8A56E;
        }

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    transition: all 0.3s;
}

    .footer__social a:hover {
        background: #C8A56E;
        color: #111;
    }

.footer__bottom {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(90deg, #111 0%, #222 100%);
    font-size: 0.85rem;
    color: #aaa;
}

    .footer__bottom p {
        margin: 0;
    }

    .footer__bottom .admin-link {
        color: #C8A56E;
        opacity: 0.85;
        display: inline-block;
        margin-top: 5px;
        transition: all 0.3s;
    }

        .footer__bottom .admin-link:hover {
            opacity: 1;
            text-decoration: underline;
        }


