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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f8f7;
  color: #111111;
  line-height: 1.6;
}

/* ===== Layout ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #000;
}

/* ===== Hero ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  flex: 1;
}

.hero-left {
  flex: 1;
}

.hello {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
  letter-spacing: 0.4px;

  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

h1 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;

  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.15s;
}

.hero-text {
  font-size: 22px;
  line-height: 1.5;
  color: #222;
  margin-bottom: 16px;

  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.25s;
}

.hero-subtext {
  color: #666;
  font-size: 17px;
  margin-bottom: 28px;

  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.35s;
}

/* ===== Socials ===== */
.socials {
  display: flex;
  gap: 18px;
  align-items: center;

  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.45s;
}

.socials a,
.socials a:visited,
.socials a:active {
  color: #666;
  font-size: 20px;
  text-decoration: none;
  transition: 0.2s ease;
}

/* hover */
.socials a:hover {
  color: #000;
  transform: translateY(-2px);
}

/* ===== Profile ===== */
.hero-right {
  flex-shrink: 0;
}

.profile-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== Footer ===== */
.footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}

.footer p {
  color: #777;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  h1 {
    font-size: 52px;
  }

  .profile-image {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-subtext {
    font-size: 16px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}