/* BATUS Footer Styles - Merkezi CSS Dosyası */

.footer {
    background-color: #fff;
    color: #4B5563; /* text-gray-700 */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    height: 1.75rem;
    margin-bottom: 1.5rem;
}

.footer-about {
    font-size: 0.875rem;
    color: #6B7280; /* text-gray-600 */
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    color: #6B7280; /* text-gray-500 */
}

.footer-social a {
    transition: color 0.2s ease-in-out;
}

.footer-social a:hover {
    color: #1F2937; /* text-gray-800 veya batus-dark */
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937; /* text-batus-dark */
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #6B7280; /* text-gray-600 */
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: #1F2937; /* text-batus-dark */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
}

.footer-contact-item i {
    color: #6B7280; /* text-gray-500 */
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #6B7280; /* text-gray-600 */
}

.footer-contact-item a:hover {
    color: #1F2937; /* text-batus-dark */
    transition: color 0.2s ease-in-out;
}

.footer-newsletter {
    font-size: 0.875rem;
    color: #6B7280; /* text-gray-600 */
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #E5E7EB; /* border-gray-200 */
}

.footer-newsletter-input {
    background-color: white;
    color: #1F2937; /* text-gray-800 */
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: none;
    flex: 1;
}

.footer-newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(31, 41, 55, 0.2);
}

.footer-newsletter-button {
    background-color: #1F2937; /* bg-gray-800 */
    color: white;
    padding: 0.75rem 1.25rem;
    transition: background-color 0.2s ease-in-out;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-newsletter-button:hover {
    background-color: black;
}

.footer-divider {
    border-top: 1px solid #E5E7EB; /* border-gray-200 */
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-copyright {
    color: #6B7280; /* text-gray-500 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #6B7280; /* text-gray-600 */
    transition: color 0.2s ease-in-out;
}

.footer-legal a:hover {
    color: #1F2937; /* text-batus-dark */
}

/* Mobile centering styles */
@media (max-width: 767px) {
    .footer .grid > div {
        text-align: center;
    }
    
    .footer .grid > div h4 {
        text-align: center;
    }
    
    .footer .grid > div ul {
        text-align: center;
        list-style: none;
        padding: 0;
    }
    
    .footer .grid > div img {
        margin: 0 auto;
        margin-bottom: 1.5rem;
    }
    
    .footer .flex.space-x-5 {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-copyright {
        margin-bottom: 0;
    }
    
    /* Reset alignment for desktop */
    .footer .grid > div {
        text-align: left;
    }
    
    .footer .grid > div h4 {
        text-align: left;
    }
    
    .footer .grid > div ul {
        text-align: left;
    }
    
    .footer .grid > div img {
        margin: 0;
        margin-bottom: 1.5rem;
    }
    
    .footer .flex.space-x-5 {
        justify-content: flex-start;
    }
}
