/* FOOTER */
footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #111;
    color: white;
    gap: 20px; /* kutular arası boşluk */
}

footer h3 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #f45b69;
}

/* RESPONSIVE - Mobil ve tablet */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 15px;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .footer-newsletter {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 10px;
    }

    .footer-newsletter input {
        width: 70%;
        margin-bottom: 10px;
    }

    .footer-newsletter button {
        width: 25%;
    }
}
