/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    color: #333;
  }
  
  /* HEADER */
  header {
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
  }
  
  .overlay {
    background-color: rgba(0,0,0,0.6);
    padding: 2rem;
    border-radius: 12px;
  }
  
  .profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
    animation: fadeIn 1.2s ease-in-out;
  }
  
  .tagline {
    font-size: 1.3rem;
    font-style: italic;
    animation: slideUp 1.5s ease;
  }
  
  /* SECTION ANIMATIONS */
  .section-animated {
    padding: 4rem 2rem;
    max-width: 960px;
    margin: auto;
    animation: fadeInUp 1s ease-in-out;
  }
  
  /* SECTION BACKGROUNDS */
  .about {
    background-color: #f3f9ff;
  }
  
  .skills {
    background-color: #e8f5e9;
  }
  
  .contact {
    background-color: #fff8e1;
  }
  
  /* SKILLS ANIMASI */
  .skill-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .skill-card {
    background: white;
    padding: 1rem;
    border-left: 5px solid #007acc;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .skill-card:hover {
    transform: scale(1.02);
  }
  
  /* CONTACT ANIMASI */
  .contact-info {
    margin-top: 1rem;
    line-height: 1.8;
  }
  
  /* FOOTER */
  footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  /* KEYFRAME ANIMASI */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .slide-left {
    animation: slideLeft 1s ease-in-out;
  }
  
  @keyframes slideLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }
  