/* Courses and Semester Styles */

.semester-section {
  background: linear-gradient(135deg, #16213e 0%, #1a2942 100%);
  border: 3px solid #003594;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.6s ease-out;
}

.semester-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #003594;
}

.semester-title {
  color: #4ecca3;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Press Start 2P", cursive;
}

.semester-stats {
  display: flex;
  gap: 12px;
  font-size: 0.65rem;
}

.semester-stat {
  color: #ffb81c;
  font-weight: 600;
}

.semester-stat span {
  color: #4ecca3;
  font-weight: 700;
}

.section-title {
  color: #ffb81c;
  font-size: 0.75rem;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Press Start 2P", cursive;
  letter-spacing: 1px;
}

.course-item {
  background: #0f3460;
  border: 2px solid #003594;
  padding: 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  animation: fadeInUp 0.4s ease-out;
}

.course-item:hover {
  border-color: #4ecca3;
  transform: translateX(5px);
  box-shadow: -5px 0 0 #4ecca3;
}

.course-info h3 {
  color: #4ecca3;
  font-size: 0.8rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.course-info p {
  color: #aaa;
  font-size: 0.65rem;
}

.course-grade {
  background: #ffb81c;
  color: #000;
  padding: 5px 10px;
  font-weight: 700;
  margin-right: 8px;
  font-size: 0.75rem;
}
