/* assets/css/footer.css */
.footer {
    background-color: var(--surface);
    padding: 80px 0 40px;
    color: var(--on-surface);
    border-top: 1px solid var(--outline-variant);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Logo Section */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    filter: var(--primary-filter);
}

.footer-description {
    max-width: 400px;
    font-size: var(--body-large-size);
    line-height: var(--body-large-line-height);
    color: var(--on-surface);
}

/* Navigation Columns */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav-title {
    color: var(--on-surface);
    font-weight: var(--font-medium);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-link {
    color: var(--on-surface);
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 0.8;
}


.footer-nav-link2 {
    color: var(--on-surface);
    transition: opacity 0.3s ease;
}

.footer-nav-link2:hover {
    opacity: 0.8;
}

/* Contact Links */
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--on-surface);
    transition: opacity 0.3s ease;
}

.footer-contact-link:hover {
    opacity: 0.8;
}

/* Copyright */
.footer-copyright {
    padding-top: 32px;
    border-top: 1px solid var(--outline-variant);
    text-align: center;
    color: var(--on-surface);
}


.footer-payment {
    margin-top: 20px;
    text-align: center;
}

.footer-payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.payment-logo {
    height: 40px; /* Boyutu tasarıma uygun olarak değiştir */
    object-fit: contain;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 0 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
    }

    .footer-description {
        text-align: center;
    }
}