:root {
  --black: #111;
  --gray: #444;
  --white: #F8F8F8;
  --spacing: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--white);
  color: var(--black);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
  padding: 2rem;
}

.profile {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

keahlian {
  font-size: 1rem;
  font-family: 'Jakarta Sans', sans-serif;
}

.subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: var(--spacing);
  font-weight: 600;
  letter-spacing: 2px;
}

.desc {
  font-size: 1.1rem;
  margin-top: var(--spacing);
  color: #555;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.3s;
}
.fade-in.delay-2 {
  animation-delay: 0.6s;
}
.fade-in.delay-3 {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .profile {
    width: 120px;
    height: 120px;
  }

  .desc {
    font-size: 1rem;
  }
}
