/* education.css - Direct analog of about.css, for Education page */

section {
  min-height: 100vh;
  padding: 2rem 9%;
}

#education-dev-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.education-dev-message-content {
  text-align: center;
  max-width: 600px;
}
.bounce {
  font-size: 4rem;
  animation: bounce 1.2s infinite alternate;
  color: #0078d7;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-18px);
  }
}
#education-dev-message h1 {
  font-size: 2.2rem;
  margin: 1rem 0 0.5rem 0;
  letter-spacing: 1px;
}
#education-dev-message p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
}
.education-dev-highlight {
  color: #0078d7;
  font-weight: 600;
}
.education-dev-note {
  display: inline-block;
  margin-top: 0.5rem;
}

.education-dev-spinner {
  font-size: 2rem;
  color: #0078d7;
  margin-top: 2rem;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4b3fa7;
  margin-bottom: 0.3rem;
}

.timeline-institution {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.2rem;
}

.timeline-date {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 1rem;
  color: #444;
}

@media (max-width: 600px) {
  .education-timeline {
    padding: 1rem 0.3rem;
  }
  .timeline-content {
    padding: 1rem 0.7rem;
  }
  .heading {
    font-size: 2rem;
  }
}
