/* ==========================================
   ASRAMA PAGE STYLES - SMA MUHAMMADIYAH 1 BABAT
========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* ========== PRESTASI ASRAMA SECTION ========== */
.prestasi-section {
  padding: 140px 20px 100px; /* ↑ Jarak aman dari header */
  background: #f9f9f9;
  scroll-margin-top: 90px; /* kalau diklik via anchor tidak ketutup header */
}

.prestasi-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-desc {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.table-container {
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#prestasi-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

#prestasi-table th,
#prestasi-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

#prestasi-table th {
  background: #004891;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#prestasi-table tr:nth-child(even) {
  background: #f5f8ff;
}

#prestasi-table tr:hover {
  background: #e8f0fe;
  transition: 0.3s;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* 📱 Tablet (max 992px) */
@media (max-width: 992px) {
  .prestasi-section {
    padding: 120px 15px 80px; /* konten agak dinaikkan */
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  #prestasi-table th,
  #prestasi-table td {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* 📱 HP (max 600px) */
@media (max-width: 600px) {
  .prestasi-section {
    padding: 100px 10px 60px; /* konten lebih dinaikkan */
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  #prestasi-table {
    min-width: 100%; /* biar tetap adaptif */
  }

  #prestasi-table th,
  #prestasi-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .table-container {
    border-radius: 8px;
  }
}