/* FAM Footer Widget – Puneva */

.fam-footer {
    width: 100%;
    background-color: #111111;
    color: #e5e7eb;
    padding-top: 36px;
    padding-bottom: 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fam-footer-divider {
    height: 1px;
    width: 100%;
    background-color: #27272f;
    margin-bottom: 40px;
}

.fam-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

/* Sol blok */

.fam-footer-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fam-footer-logo img {
    display: block;
    height: auto;
    max-width: 180px;
}

.fam-footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fam-footer-social a {
    font-size: 18px;
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.fam-footer-social a:hover {
    color: #fbbf24;
    transform: translateY(-1px);
}

/* “since 2000” */

.fam-footer-since {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fbbf24;
}

.fam-footer-bottom {
    font-size: 12px;
    color: rgba(229, 231, 235, 0.8);
}

/* Sağ blok – menyular */

.fam-footer-right {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.fam-footer-menu-column {
    min-width: 0;
}

.fam-footer-menu-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 12px;
    color: #e5e7eb;
}

.fam-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fam-footer-menu li {
    margin-bottom: 6px;
}

.fam-footer-menu li a {
    font-size: 14px;
    color: rgba(156, 163, 175, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fam-footer-menu li a:hover {
    color: #ffffff;
}

/* Mobil uyğunluq */

@media (max-width: 1024px) {
    .fam-footer-inner {
        flex-direction: column;
    }

    .fam-footer-left {
        flex: 0 0 auto;
    }

    .fam-footer-right {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fam-footer-inner {
        padding: 0 16px;
    }

    .fam-footer-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 24px;
    }

    .fam-footer-since {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .fam-footer-right {
        grid-template-columns: 1fr;
    }

    .fam-footer-since {
        font-size: 32px;
    }

    .fam-footer-social {
        gap: 12px;
    }
}
