/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
  max-width: 850px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  border-top: 6px solid #ED1C24;   /* aksen merah Telkom di atas */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== HEADER / LOGO ===== */
p:first-of-type {
  text-align: center;
  width: 100%;
  margin: 0 auto 15px auto;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 120px;
}

/* ===== HEADING ===== */
h1 {
  color: #ED1C24;             
  text-align: center;
  margin: 15px 0;
  font-size: 26px;
  letter-spacing: 0.5px;
}

h1 + p {
  text-align: center;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}

/* ===== GARIS PEMISAH — SATU GARIS HITAM SOLID ===== */
hr {
  border: none;
  border-top: 2px solid #000000;   
  margin: 25px 0;
}

/* ===== PARAGRAF ===== */
p {
  text-align: justify;
  margin-bottom: 10px;
}

/* ===== TABEL RIWAYAT PENDIDIKAN ===== */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(237, 28, 36, 0.15);
}

table th {
  background-color: #ED1C24;   
  color: #ffffff;
  padding: 12px;
  text-align: center;
  font-weight: bold;
}

table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

table tr:nth-child(even) td {
  background-color: #fdf2f2;   
}

table tr:hover td {
  background-color: #fad4d6;   
}

/* ===== LIST HOBI ===== */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 10px 15px;
  margin-bottom: 8px;
  background-color: #fdf2f2;
  border-left: 4px solid #ED1C24;   
  border-radius: 6px;
  transition: 0.3s;
}

ul li:hover {
  background-color: #fad4d6;
  transform: translateX(5px);
}

/* ===== LINK KONTAK ===== */
a {
  color: #ED1C24;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

a:hover {
  color: #a51118;              
  text-decoration: underline;
}

/* ===== SECTION KONTAK ===== */
.kontak p {
  margin: 8px 0;
  text-align: left;
}

/* ===== RESPONSIVE (HP) ===== */
@media (max-width: 600px) {
  body {
    margin: 10px;
    padding: 15px;
  }

  h1 {
    font-size: 20px;
  }

  table th, table td {
    font-size: 13px;
    padding: 8px;
  }
}