/* ============================================
   Gazisosyal - Responsive Styles
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.75rem; }
    .hero-stats { gap: var(--space-xl); }
    .events-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .section-title { font-size: 2rem; }
}

/* Mobile Large */
@media (max-width: 768px) {
    .navbar-links { display: none; }
    .mobile-menu-btn { display: block; }

    .navbar-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-lg);
        border-bottom: 1px solid var(--glass-border);
        gap: var(--space-md);
    }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-title { font-size: 2.25rem; }
    .hero-description { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-wrap: wrap; gap: var(--space-xl); }
    .hero-stat-number { font-size: 1.5rem; }

    /* Hero orbs daha küçük ve daha soluk mobilde */
    .hero-orb { opacity: 0.2; }
    .hero-orb-1 { width: 200px; height: 200px; right: -30px; }
    .hero-orb-2 { width: 150px; height: 150px; }
    .hero-orb-3 { width: 100px; height: 100px; }

    .events-grid { grid-template-columns: 1fr; }
    .announcements-grid { grid-template-columns: 1fr; }
    .communities-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

    .section-title { font-size: 1.75rem; }
    .section { padding: var(--space-2xl) 0; }

    .container, .container-sm, .container-md {
        padding: 0 var(--space-md);
    }

    /* Dashboard grid mobilde tek sütun */
    .dashboard-tabs { overflow-x: auto; width: 100%; }

    #tab-events > div,
    #tab-announcements > div {
        grid-template-columns: 1fr !important;
    }

    .profile-name { font-size: 1.5rem; }
    .profile-links { flex-direction: column; }

    .login-card { padding: var(--space-xl); }
    .login-card-title { font-size: 1.5rem; }

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

    .modal { margin: var(--space-md); }

    .item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .item-row-actions {
        width: 100%;
    }

    .item-row-actions .btn {
        flex: 1;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .hero-title { font-size: 1.85rem; }
    .hero-description { font-size: 0.95rem; }
    .communities-grid { grid-template-columns: repeat(2, 1fr); }
    .community-card-avatar { width: 48px; height: 48px; font-size: 1.2rem; }
    .community-card-name { font-size: 0.85rem; }
    .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.95rem; }

    .dashboard-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .toast {
        min-width: auto;
        max-width: 90vw;
        font-size: 0.85rem;
    }

    .toast-container {
        right: 10px;
        left: 10px;
    }
}
