﻿/* FOOTER ANA DİZAYN */
.site-footer {
    background-color: #0b0b0b; /* Saytın ana qara rəngi */
    padding-bottom: 30px;
    margin-top: 50px;
    color: #888;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 1px solid #222;
}

.footer-top-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent); /* Qızılı keçidli xətt */
    margin-bottom: 40px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* BRAND VƏ NAVİQASİYA */
.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-img {
    height: 30px;
    margin-right: 25px;
    filter: brightness(0.8);
    transition: 0.3s;
}

.brand-img:hover {
    filter: brightness(1);
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #eee;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #ffc107; /* Hover olanda sarı/qızılı rəng */
}

/* SOSİAL İKONLAR */
.footer-social {
    margin-bottom: 30px;
}

.social-link {
    color: #555;
    font-size: 20px;
    margin: 0 12px;
    transition: 0.3s;
}

.social-link:hover {
    color: #ffc107;
    transform: translateY(-3px);
    display: inline-block;
}

/* HÜQUQİ BÖLMƏ */
.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: #444;
    text-decoration: none;
    font-size: 11px;
    margin: 0 10px;
    transition: 0.2s;
}

.legal-links a:hover {
    color: #888;
}

.legal-text {
    font-size: 11px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.legal-text strong {
    color: #777;
}

.footer-copyright {
    font-size: 12px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* MOBİL GÖRÜNÜŞ */
@media (max-width: 768px) {
    .footer-main-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}