/* body {
    background-image: url('asset/bg.jpg');
  background-size: cover; 
  background-position: center; 
  background-attachment: fixed; 

 
  display: flex;
  justify-content: center;
  align-items: center; 
  min-height: 100vh; 
  margin: 0; 
  font-family: sans-serif;
} */

/* .card {
  width: 95vw; 
  height: 90vh; 

  


  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
   border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden; 


  transition: transform 0.2s ease-in-out;
} */

body {
  background-image: url('asset/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: sans-serif;
}

.card {
  width: 95vw;
  height: 90vh;
  max-width: 1200px; /* Batas lebar maksimum agar tidak terlalu besar di monitor lebar */

  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* PENTING: Menambahkan padding dan scroll */
  padding:25px 40px;
  overflow: hidden; /* Akan menyembunyikan konten yang berlebih, bukan di-scroll */
  
  transition: transform 0.2s ease-in-out;
}

/* Wadah utama CV di dalam card */
.cv-container {
  display: flex;
  gap: 40px;
  color: #2c3e50; /* Warna teks gelap agar mudah dibaca */
}

/* KOLOM KIRI */
.cv-sidebar {
  flex: 1;
  max-width: 280px;
  text-align: center; /* Membuat teks di sidebar rata tengah */
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-name {
  margin: 0;
  font-size: 1.8rem;
}

.profile-title {
  font-weight: 300;
  margin-top: 5px;
  font-size: 1.1rem;
  color: #34495e;
}

.contact-section,
.skills-section {
    text-align: left; /* Kembalikan rata kiri untuk bagian kontak & skills */
    margin-top: 30px;
}

.skills-section ul {
    list-style-type: none;
    padding: 0;
}

.skills-section li {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

/* KOLOM KANAN */
.cv-main {
  flex: 2.5;
}

.main-section {
  margin-bottom: 30px;
}

.main-section h2 {
  border-bottom: 2px solid #bdc3c7;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.job {
  margin-bottom: 20px;
}

.job ul {
  padding-left: 20px;
}

.contact-item {
  display: flex;         /* Mengaktifkan Flexbox */
  align-items: flex-start; /* Meratakan item ke atas jika teksnya panjang */
  margin-bottom: 8px;    /* Memberi jarak antar baris kontak */
}

.contact-item span:first-child {
  min-width: 75px;        /* KUNCI UTAMA: Memberi lebar minimum yang sama untuk semua label */
  font-weight: bold;      /* Membuat teks label menjadi bold */
}

/* Styling untuk link agar lebih rapi */
.contact-section a {
  color: #0056b3; /* Warna link biru yang lebih gelap */
  text-decoration: none; /* Menghilangkan garis bawah default */
  word-break: break-all; /* Mencegah teks panjang merusak layout */
}

.contact-section a:hover {
  text-decoration: underline; /* Garis bawah muncul saat hover */
}
