/* assets/footer.css */
.site-footer {
    background-color: #111827; /* Koyu Gri */
    color: #9ca3af; /* Açık Gri */
    border-top: 1px solid #374151;
}

.footer-about .logo img {
    filter: brightness(0) invert(1); /* Logoyu beyaz yapmak için */
}

.footer-title {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    space-y: 0.75rem;
}

.footer-links li a {
    text-decoration: none;
    color: #9ca3af;
    transition: color 0.2s ease-in-out;
    font-size: 0.875rem; /* 14px */
}

.footer-links li a:hover {
    color: #f97316; /* Ana turuncu renk */
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-media a {
    color: #9ca3af;
    font-size: 1.25rem; /* 20px */
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-media a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}
