/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    padding-bottom: 50px; /* footer height ile aynı */
    background-color: #f9fafb;
}

/* Mobil — varsayılan */
.footer-text {
    font-size: 13px;
}

/* Tablet (sm) */
@media (max-width: 576px) {
    .footer-text {
        font-size: 10px;
    }
}

/* Desktop (md+) */
@media (min-width: 768px) {
    .footer-text {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .footer-text {
        font-size: 15px;
    }
}


