* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-color: #6366f1; --primary-dark: #4f46e5; --secondary-color: #f1f5f9; --text-primary: #1e293b; --text-secondary: #64748b; --background: #ffffff; --surface: #f8fafc; --border: #e2e8f0; --success: #10b981; --warning: #f59e0b; --danger: #ef4444; --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1); --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); } body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-primary); background: var(--surface); } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } /* Navigation */ .navbar { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border); } .nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; } .nav-logo { font-size: 1.5rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .nav-menu { display: flex; list-style: none; gap: 2rem; } .nav-link { text-decoration: none; color: var(--text-primary); font-weight: 500; transition: color 0.3s ease; } .nav-link:hover { color: var(--primary-color); } .nav-actions { display: flex; align-items: center; gap: 1rem; } .notification-icon { font-size: 1.2rem; cursor: pointer; padding: 0.5rem; border-radius: 0.5rem; transition: background 0.3s ease; } .notification-icon:hover { background: var(--surface); } .user-profile { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.5rem; border-radius: 0.5rem; transition: background 0.3s ease; } .user-profile:hover { background: var(--surface); } .profile-img { width: 32px; height: 32px; border-radius: 50%; } .username { font-weight: 500; } .dropdown-arrow { font-size: 0.8rem; color: var(--text-secondary); } .hamburger { display: none; flex-direction: column; cursor: pointer; } .hamburger span { width: 25px; height: 3px; background: var(--text-primary); margin: 3px 0; transition: 0.3s; } /* Hero Section */ .hero { min-height: 100vh; display: flex; align-items: center; padding: 0 2rem; background: var(--background); } .hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .hero-title { font-size: 3rem; font-weight: 700; line-height: 1.1; margin-bottom: 1rem; } .gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.125rem; color: var(--text-secondary); margin-bottom: 2rem; } .quick-stats { display: flex; gap: 1rem; margin-bottom: 2rem; } .stat-card { background: white; padding: 1rem; border-radius: 0.75rem; box-shadow: var(--shadow); text-align: center; min-width: 100px; } .stat-number { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); } .stat-label { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.25rem; } .hero-buttons { display: flex; gap: 1rem; } .btn { padding: 0.75rem 2rem; border: none; border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; } .btn-primary { background: var(--gradient); color: white; box-shadow: var(--shadow); } .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } .btn-secondary { background: white; color: var(--text-primary); border: 2px solid var(--border); } .btn-secondary:hover { border-color: var(--primary-color); color: var(--primary-color); } .dashboard-preview { display: flex; flex-direction: column; gap: 1rem; } .preview-card { background: white; padding: 1.5rem; border-radius: 1rem; box-shadow: var(--shadow); } .card-header { font-weight: 600; margin-bottom: 1rem; color: var(--text-primary); } .activity-item { padding: 0.5rem 0; color: var(--text-secondary); font-size: 0.875rem; border-bottom: 1px solid var(--border); } .activity-item:last-child { border-bottom: none; } .deadline-item { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; } .deadline-date { color: var(--primary-color); font-weight: 500; } .deadline-task { color: var(--text-secondary); } /* Sections */ .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; } .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; } .projects { padding: 4rem 0; background: var(--surface); } .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .project-card { background: white; border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow); transition: transform 0.3s ease; position: relative; } .project-card:hover { transform: translateY(-5px); } .project-status { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem 0.75rem; border-radius: 1rem; font-size: 0.75rem; font-weight: 500; } .status-active { background: #dcfce7; color: #166534; } .status-review { background: #fef3c7; color: #92400e; } .status-planning { background: #dbeafe; color: #1e40af; } .project-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; margin-top: 1rem; } .project-content p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.875rem; } .project-progress { margin-bottom: 1rem; } .progress-bar { width: 100%; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; margin-bottom: 0.5rem; } .progress-fill { height: 100%; background: var(--gradient); transition: width 0.3s ease; } .progress-text { font-size: 0.75rem; color: var(--text-secondary); } .project-meta { display: flex; justify-content: space-between; align-items: center; } .team-avatars { display: flex; gap: 0.25rem; } .avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--gradient); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; } .project-due { font-size: 0.75rem; color: var(--text-secondary); } .team { padding: 4rem 0; background: var(--background); } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .team-member { background: white; padding: 1.5rem; border-radius: 1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: 1rem; } .large-avatar { width: 48px; height: 48px; font-size: 1rem; } .member-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; } .member-info p { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 0.5rem; } .member-status { font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 1rem; font-weight: 500; } .online { background: #dcfce7; color: #166534; } .away { background: #fef3c7; color: #92400e; } .offline { background: #f1f5f9; color: #64748b; } .member-stats { margin-left: auto; text-align: center; } .reports { padding: 4rem 0; background: var(--surface); } .reports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .report-card { background: white; padding: 2rem; border-radius: 1rem; box-shadow: var(--shadow); text-align: center; } .report-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; } .chart-placeholder { font-size: 3rem; margin: 2rem 0; } .report-card p { color: var(--text-secondary); margin-bottom: 1.5rem; } .footer { background: var(--text-primary); color: white; padding: 2rem 0; } .footer-content { display: flex; justify-content: space-between; align-items: center; } .footer-links { display: flex; gap: 2rem; } .footer-links a { color: white; text-decoration: none; opacity: 0.8; transition: opacity 0.3s ease; } .footer-links a:hover { opacity: 1; } /* Responsive Design */ @media (max-width: 768px) { .nav-actions { display: none; } .hamburger { display: flex; } .nav-menu { display: none; } .hero-content { grid-template-columns: 1fr; text-align: center; } .hero-title { font-size: 2rem; } .quick-stats { justify-content: center; } .hero-buttons { flex-direction: column; align-items: center; } .btn { width: 200px; } .section-header { flex-direction: column; gap: 1rem; align-items: flex-start; } .footer-content { flex-direction: column; gap: 1rem; text-align: center; } } @media (max-width: 480px) { .container { padding: 0 1rem; } .hero { padding: 0 1rem; } .quick-stats { flex-direction: column; } .projects-grid, .team-grid, .reports-grid { grid-template-columns: 1fr; } }