/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8); /* Transparansi sama dengan halaman utama */
    padding: 15px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container {
    flex-shrink: 0;
}

.D-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: 0.3s;
}

.D-logo:hover {
  transform: scale(1.2); /* Sama seperti halaman utama */
}

.navigation a {
    color: black;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #f4b400;
    text-decoration: underline;
}

/* Profile picture */
.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Container styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

p, li {
    font-size: 1rem;
    color: #555;
}

ul.experience-list {
    list-style-type: none;
    padding-left: 0;
}

ul.experience-list li {
    background-color: #f4f4f9;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
  background-color: #333;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  .navigation a {
    margin-left: 10px;
    font-size: 0.9em;
  }

  .container {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  .D-logo {
    width: 60px;
    height: 60px;
  }

  .navigation a {
    margin-left: 5px;
    font-size: 0.8em;
  }

  .container {
    padding: 60px 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  p, li {
    font-size: 0.9rem;
  }
}
