/* ==================================================
   PROFIL SEKOLAH – FINAL CLEAN VERSION
================================================== */


/* =====================
   JUDUL SECTION (GLOBAL)
===================== */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1f3d2b;
    margin-bottom: 30px;
  }
  
  
  /* =====================
     SEJARAH SINGKAT SEKOLAH
  ===================== */
  .sejarah-section {
    padding: 60px 20px;
    background-color: #ffffff;
  }
  
  .sejarah-text {
    max-width: 900px;
    margin: 0 auto;
  
    font-size: 16px;
    line-height: 1.9;
    color: #333;
  
    text-align: justify;
    text-justify: inter-word;
  }
  
  
  /* =====================
     IDENTITAS SEKOLAH
  ===================== */
  .identitas-section {
    width: 100%;
    background: linear-gradient(180deg, #f7f9f8, #eef2f0);
    padding: 50px 20px;
  }
  
  /* CARD UTAMA */
  .identitas-card {
    max-width: 900px;
    margin: 0 auto;
  
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  
    background: #ffffff;
    padding: 36px;
    border-radius: 22px;
  
    border: 1px solid #e5ece9;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  /* ITEM */
  .identitas-item {
    background: #fbfdfc;
    border-radius: 14px;
    padding: 18px 20px;
  
    border: 1px solid #e6efea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  
    transition: all 0.25s ease;
  }
  
  .identitas-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(30, 127, 67, 0.18);
    border-color: #1e7f43;
  }
  
  /* LABEL */
  .identitas-item span {
    display: flex;
    align-items: center;
    gap: 10px;
  
    font-size: 13px;
    font-weight: 600;
    color: #1e7f43;
    margin-bottom: 6px;
  }
  
  /* ICON */
  .identitas-item span i {
    font-size: 16px;
    color: #1e7f43;
  }
  
  /* VALUE */
  .identitas-item p {
    margin: 0;
    font-size: 15px;
    color: #2f2f2f;
    line-height: 1.6;
  }
  
  /* FULL ROW */
  .identitas-item.full {
    grid-column: 1 / -1;
  }
  
  
  /* =====================
     SECTION BERGABUNG
  ===================== */
  .join-section {
    text-align: center;
  }
  
  .join-section .section-title,
  .join-section .intro-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  
  /* =====================
     RESPONSIVE
  ===================== */
  @media (max-width: 768px) {
  
    .section-title {
      font-size: 24px;
    }
  
    .identitas-card {
      grid-template-columns: 1fr;
      padding: 26px;
    }
  
    .sejarah-text {
      font-size: 15px;
    }
  }
  .sejarah-text {
    max-width: 900px;
    margin: 0 auto;
  
    font-size: 16px;
    line-height: 1.9;
    color: #333;
  
    text-align: justify !important;
    text-justify: inter-word;
  }
  .join-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff; /* putih polos */
  }
  
  .join-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
  }
  
  .join-section .intro-text {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }
  
  .join-button {
    margin-top: 20px;
  }
  
  /* Button Daftar */
  .btn-daftar {
    display: inline-block;
    padding: 12px 30px;
    background-color: #198754; /* hijau */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px; /* tidak terlalu melengkung */
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-daftar:hover {
    background-color: #146c43; /* hijau lebih gelap */
    transform: translateY(-1px);
  }
  