/* ==========================
        HERO
========================== */

.teacher-hero {
  position: relative;
  min-height: 80vh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    linear-gradient(rgba(15, 76, 129, 0.75), rgba(15, 76, 129, 0.75)),
    url("../../img/programs/program-hero.jpg");

  background-size: cover;
  background-position: center;
}

.teacher-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  top: -200px;
  right: -100px;
}

.teacher-hero::after {
  content: "";

  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  bottom: -150px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;

  text-align: center;
  color: #fff;

  max-width: 900px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: 1.4rem;

  letter-spacing: 4px;

  font-weight: 600;

  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);

  line-height: 1.1;

  margin: 20px 0;

  font-weight: 800;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-content p {
  font-size: 1.6rem;

  line-height: 1.8;

  max-width: 700px;

  margin: 0 auto;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================
    Document List
========================== */

.document-list {
  padding: 80px 0;
  font-family: var(--font-body);
}

.document-grid {
  display: flex;

  flex-direction: column;

  gap: 3rem;

  margin-top: 50px;
}

.document-card {
  background: #fff;

  border-radius: 16px;

  padding: 25px;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  gap: 20px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.document-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.document-icon i {
  font-size: 2rem;

  color: #dc2626;
}

.document-btn {
  background: #0d3b8e;

  color: #fff;

  text-decoration: none;

  padding: 10px 18px;

  border-radius: 8px;

  font-weight: 600;

  margin-left: auto;
}

.document-btn.disabled {
  background: #999;

  pointer-events: none;

  cursor: not-allowed;
}

/* ==========================
    Help Section
========================== */

.help-section {
  padding: 80px 0;
}

.help-box {
  background: #f8fafc;

  padding: 50px;

  border-radius: 20px;

  text-align: center;

  font-family: var(--font-body);
}

/* ==========================
    Empty State
========================== */

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
}

.empty-state p {
  opacity: 0.8;
}

/* ========================================
        DOCUMENT SECTION
======================================== */

.document-section {
  margin-bottom: 3rem;
}

.document-section:last-child {
  margin-bottom: 0;
}

.document-section-header {
  display: flex;
  align-items: center;

  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;

  border-bottom: 2px solid #e8edf4;
}

.document-section-header h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  margin: 0;

  font-size: 1.6rem;
  font-weight: 700;

  color: var(--primary-color);
}

.document-section-header i {
  color: var(--secondary-color);

  font-size: 1.3rem;
}

.document-grid-section {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 1.5rem;
}

.document-content {
  flex: 1;
}

.document-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: #64748b;
  background: #eef5ff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* Tablet */
@media (max-width: 992px) {
  .document-grid-section {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .document-card {
    flex-direction: column;
    text-align: center;
  }
}
