/* ============================================
   style.css - Ana Font ve Reset Stilleri
   ============================================ */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ana Font Tanımları */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    /* Daha yumuşak arka plan rengi - Göz yormaz */
    background-color: #f5f7fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Ana container arka planı */
.main-container {
    background: #f5f7fa;
}

/* Kartlar ve beyaz alanlar için */
.card, .post-card, .settings-card, .favorite-card {
    background: #ffffff;
}

/* Alternatif: Koyu tema isterseniz (Gece modu) */
/*
body {
    background-color: #1a1a2e;
    color: #e0e0e0;
}
*/


/* ===== FONT DÜZELTMESİ - SADECE BU EKLENECEK ===== */
body, html, .nav-link, .logo-text, .post-title, .comment-user-link, .post-author-name {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif !important;
    margin: 0;
}

/* Banlı kullanıcı - Çizili stil */
.username-banned {
    text-decoration: line-through !important;
    text-decoration-thickness: 2px !important;
    text-decoration-color: #e74c3c !important;
    opacity: 0.7 !important;
    color: #e74c3c !important;
}

.username-banned:hover {
    opacity: 0.9 !important;
}

/* Toast bildirimleri */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-content {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    min-width: 200px;
}

.toast-success .toast-content {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.toast-error .toast-content {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.toast-info .toast-content {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.toast-content i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .toast-content {
        width: calc(100% - 40px);
        justify-content: center;
    }
}