body {
  font-family: 'Inknut Antiqua', serif;
  background: url('../img/bg1.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 768px;
  margin: auto;
  padding: 10px;
}

h1 {
  text-align: center;
  margin-bottom: 0;
}

h1 + p {
  text-align: center;
  font-style: italic;
  margin-top: 0px;
}

.card {
  background: #F1EAE6;
  border-radius: 15px;
  box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.60);
  padding: 40px;
  margin: 20px 0;
  transition: transform 0.9s ease, opacity 0.9s ease;
  opacity: 0;
  transform: translateY(20px);
  display: flex;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.experience-table td {
  border: 1px solid #d99aa4;
  padding: 8px;
  vertical-align: top;
  font-size: 14px;
}

.experience-table tr:first-child td {
  border-top: none;
}

.experience-table tr:last-child td {
  border-bottom: none;
}

.experience-table tr td:first-child {
  border-left: none;
}

.experience-table tr td:last-child {
  border-right: none;
}
.experience-table td:empty {
  border: none;
}


.project-section {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.project-section .left,
.project-section .right {
  flex: 1;
  padding: 0 10px;
}

.project-section .left {
  border-right: 2px solid #d99aa4;
}

.project-section h3 {
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
}

.project-section p,
.project-section li {
  font-size: 14px;
  margin-bottom: 6px;
}

.biodata-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biodata-info h2 {
  font-size: 24px;
  margin-bottom: 0;
  color: #222;
}

.biodata-info p {
  font-size: 16px;
}

.biodata-info p.with-line {
  border-bottom: 1px solid #d99aa4;
  padding-bottom: 6px;
  margin-bottom: 0;
}

.profile-section {
  text-align: center;
  position: relative;
}

.profile-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

.languages {
  font-size: 13px;
  margin-top: 8px;
  color: #444;
  line-height: 1.5;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  
}
.simple-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff; /* warna latar footer (putih) */
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.footer-card {
  background-color: #f0cfd3; /* pink soft */
  color: #333333;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Inknut Antiqua', serif;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
