/**
 * DisRandevu.com - Responsive Override Stiller
 */

/* Mobile: < 640px */
@media (max-width: 639px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    
    /* Stat kartları */
    .stat-card { min-width: 100%; }
    
    /* Tablo scroll */
    .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    
    /* Filtre sidebar mobile overlay */
    .filter-sidebar-mobile {
        position: fixed;
        inset: 0;
        z-index: 50;
        background: white;
        overflow-y: auto;
        padding: 1rem;
    }
    
    /* Profil sayfası stack */
    .profile-header { flex-direction: column; text-align: center; }
    .profile-header img { margin: 0 auto; }
    
    /* Calendar küçük ekran */
    .calendar-grid > div { min-height: 60px !important; font-size: 0.65rem; }

    /* Hero quick links horizontal scroll */
    .flex-wrap { gap: 0.375rem; }

    /* Footer 12-col fallback */
    footer .lg\:col-span-4,
    footer .lg\:col-span-2,
    footer .lg\:col-span-3 { grid-column: span 1; }
}

/* Tablet: 640px - 1023px */
@media (min-width: 640px) and (max-width: 1023px) {
    .grid-cols-4-tablet { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Desktop geniş: 1280px+ */
@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

/* Print */
@media print {
    header, footer, .cookie-consent, .mobile-menu, nav { display: none !important; }
    body { font-size: 12pt; color: #000; }
    a { text-decoration: underline; color: #000; }
    .no-print { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode hazırlık (opsiyonel) */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #0f172a;
        --text-primary: #f1f5f9;
    }
}
*/
