/* Font chữ hiện đại */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap");

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc; /* Slate 50 */
  -webkit-font-smoothing: antialiased;
}

/* Hiệu ứng đổ bóng đổ sâu cho ảnh Profile */
.shadow-2xl {
  shadow-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Hiệu ứng hover cho các nút liên kết */
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bo góc siêu tròn trịa đúng kiểu Apple/Bento */
.rounded-3xl {
  border-radius: 1.75rem;
}

/* Tinh chỉnh Icon cho Zalo vì nó không có trong FontAwesome chuẩn */
.bg-cyan-50 {
  background-color: #ecfeff;
}

/* Đảm bảo trang web luôn hiển thị đẹp trên điện thoại */
@media (max-width: 640px) {
  .max-w-2xl {
    padding-top: 2rem;
  }
  h1 {
    font-size: 1.875rem !important; /* text-3xl */
  }
}

/* Hiệu ứng hiện dần khi load trang */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.max-w-2xl {
  animation: fadeInUp 0.6s ease-out;
}
