﻿/* ================================
   FOOTER
   Site footer bölümü
   ================================ */

/* ===== MAIN FOOTER ===== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

/* ===== FOOTER CONTENT ===== */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 576px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--primary-yellow);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

    .footer-logo img {
        height: 50px;
        width: auto;
        filter: brightness(0) invert(1);
    }

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    display: block;
    padding: var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: var(--transition-fast);
}

    .footer-link:hover {
        color: var(--primary-yellow);
        padding-left: var(--spacing-sm);
    }

/* ===== CONTACT INFO ===== */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    border-radius: var(--radius-sm);
    color: var(--text-white);
}

/* ===== SOCIAL LINKS ===== */
.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-white);
    transition: var(--transition-fast);
}

    .social-link:hover {
        background: var(--primary-green);
        transform: translateY(-4px);
    }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

    .footer-copyright a {
        color: var(--primary-yellow);
        text-decoration: none;
    }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* Developer Credit */
.footer-developer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

    .footer-developer i.fa-code {
        color: #4CAF50;
        margin-right: 5px;
    }

    .footer-developer i.fa-heart {
        color: #e74c3c;
        animation: heartbeat 1.5s ease-in-out infinite;
        margin: 0 5px;
    }

    .footer-developer a {
        color: #4CAF50;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border-bottom: 1px solid transparent;
    }

        .footer-developer a:hover {
            color: #FFD700;
            border-bottom-color: #FFD700;
        }

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}