/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #f4f4f4;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4 {
    color: #8a5a5a;
    margin-bottom: 10px;
  }
  
  /* Navbar Styling */
  .navbar {
    background-color: #8a5a5a;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .navbar ul li {
    display: inline;
  }
  
  .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    background-color: #8a5a5a;
    border-radius: 5px;
  }
  
  /* Header Section */
  .header {
    text-align: center;
    padding: 50px 0px;
    background-color: #fff;
  }
  
  .profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin: 0 auto;
    display: block;
  }
  
  .header h1 {
    font-size: 40px;
    margin: 40px 0;
  }
  
  .header h3 {
    font-size: 24px;
    color: #555;
  }
  
  /* Section Styling */
  .section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 800px;
  }
  
  .section h2 {
    font-size: 28px;
    color: #8a5a5a;
  }
  
  .section p {
    font-size: 16px;
    color: #555;
  }
  
  /* Pendidikan Section */
  .section ul {
    text-align: left;
    list-style-type: none;
    padding: 0;
  }
  
  .section ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }
  
  /* Keahlian Section */
  .skill {
    text-align: left;
    margin-bottom: 15px;
  }
  
  .progress-bar {
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    margin-top: 5px;
  }
  
  .progress {
    background-color: #8a5a5a;
    height: 100%;
    text-align: right;
    color: white;
    padding-right: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  /* Portofolio Section */
  .portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .portfolio-item {
    width: 200px;
    text-align: center;
  }
  
  .portfolio-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }
  
  .portfolio-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
  }
  
  /* Contact Section */
  .contact p {
    font-size: 16px;
    color: #E4405F;
    margin-right: 10px;
  }

  .contact a {
    color: inherit; 
    text-decoration: none; 
  }

  .contact a:hover {
    text-decoration: underline; 
    color: #E4405F; 
  }

  .footer {
    text-align: center;
    padding: 15px;
    background-color: #f1f1f1;
    font-size: 14px;
    color: #333;
    margin-top: 20px;
  }
  
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .portfolio-gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .navbar ul {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  