/* responsive.css */
/* Maksimum 768px genişlik için mobil görünüm ayarları */
@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .section-content {
        font-size: 1rem;
        padding: 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        height: 32px;
        margin-bottom: 10px;
    }

    nav.footer-nav {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .footer-link {
        font-size: 0.95rem;
    }

    .social-icon {
        font-size: 22px;
        margin: 0 6px;
    }

    .scroll-button {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .scroll-button svg {
        width: 20px;
        height: 20px;
    }

    .loading-text {
        font-size: 16px;
    }

    .dot {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }

    /* Gerekirse form elemanları da uyarlanabilir */
    input, textarea, button {
        width: 100%;
        font-size: 1rem;
    }
}
