/* ═══════════════════════════════════════════════════════════════
   LOTUS ACADEMY — Student-Specific Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Student Dashboard Welcome ───────────────────────────────── */
.student-dashboard .welcome-card {
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lotus);
}

/* Lotus petal watermark in welcome card */
.student-dashboard .welcome-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.student-dashboard .welcome-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.student-dashboard .welcome-card h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.student-dashboard .welcome-card .subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ── Student Quick Stats ─────────────────────────────────────── */
.student-dashboard .quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

/* ── Attendance Calendar ─────────────────────────────────────── */
.attendance-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.attendance-calendar .day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.76rem;
  font-family: 'Sora', monospace;
  font-weight: 600;
  transition: transform 0.15s ease;
}

.attendance-calendar .day-cell:hover {
  transform: scale(1.08);
}

.attendance-calendar .day-cell.present  { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.attendance-calendar .day-cell.absent   { background: rgba(239, 68, 68, 0.13);  color: var(--danger-light); }
.attendance-calendar .day-cell.late     { background: rgba(245, 158, 11, 0.13); color: var(--warning-light); }
.attendance-calendar .day-cell.excused  { background: rgba(59, 130, 246, 0.13); color: #60A5FA; }

/* ── Payment Cards ───────────────────────────────────────────── */
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.payment-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.payment-card .month {
  font-family: 'Sora', monospace;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.payment-card .amount {
  font-family: 'Sora', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Upload Zone ─────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed rgba(167, 139, 250, 0.35);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.upload-zone:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.08);
}

.upload-zone .icon {
  font-size: 2.2rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-zone .text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.upload-zone .hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin-top: 4px;
}
