body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'inter', sans-serif;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1000px;
}

.text {
  max-width: 50%;
}

.text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 200;
}

.text p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
}

.profile {
  text-align: center;
}

.pfp {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.pfp:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.socials a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.socials a:hover img {
  transform: scale(1.15);
  opacity: 0.8;
  background: #aaa;
}

.notion {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.notion::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.notion:hover {
  color: #aaa;
}

.notion:hover::after {
  width: 100%;
}

/* fade + slide up with stagger */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s forwards;
  animation-delay: var(--delay, 0s);
}

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

/* bounce effect */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-15px); }
  50% { transform: translateY(5px); }
  70% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
